Count of operation required to water all the plants
Given an array arr[] of N integers where ith element represents the amount of water required by the plant at ith index and an integer K, the task is to calculate the count of operations required to water all the plants using a container that can hold at most K liters of water wherein each operation,
- You can move to the adjacent plant to the left or to the right.
- Also, there is a river at index -1 from where the container can be refilled any number of times.
- Note that initially, at index -1 and any plant can not be watered partially during any step.
Examples:
Input: arr[] = {2, 2, 3, 3}, K = 5
Output: 14
Explanation: For the above example, during the first 2 operations: the plants at index 0 and 1 can be watered.
Since we do not have enough water for the 3rd plant, return to the river in 2 operations.
Refill the container and return to the 3rd plant in 3 operations.
Similarly, we do not have enough water for the 4th plant.
So refill the container and come back to the 4th plant in a total of 7 operations.
Therefore, a total of 14 operations are required.Input: arr[] = {1, 2, 3, 4}, K = 3
Output: -1
Explanation: It is not possible to fully water the 4th plant using a container of capacity 3.
Approach: The given problem is an implementation-based problem. It can be solved using the following steps:
- Create a variable current_capacity to store the current quantity of water in the container. Initially, current_capacity = K.
- Traverse the given array arr[] using a variable i and perform the following operations:
- If arr[i] > K, return -1.
- If arr[i] > current_capacity, add 2*i + 1 into the operation count and set current_capacity = K – arr[i].
- Otherwise, add 1 to the operation count and set current_capacity = current_capacity – arr[i].
Below is the implementation of the above approach:
C++
// C++ program of the above approach #include <bits/stdc++.h> using namespace std; // Function to find count of operation // required to water all the plants int reqOperationCnt(vector< int >& arr, int K) { // Stores current capacity // of the container int current_capacity = K; // Stores the final count int cnt = 0; // Loop to traverse arr[] for ( int i = 0; i < arr.size(); i++) { // If required water is // more than max capacity if (arr[i] > K) { return -1; } // If container does not // have enough water if (current_capacity < arr[i]) { // Update cnt cnt += 2 * i + 1; // Update current capacity // to the remaining water current_capacity = K - arr[i]; } else { // Update current capacity cnt++; current_capacity -= arr[i]; } } // Return Answer return cnt; } // Driver Code int main() { vector< int > arr{ 2, 2, 3, 3 }; int K = 5; cout << reqOperationCnt(arr, K); return 0; } |
Java
// Java program for the above approach import java.util.*; public class GFG { // Function to find count of operation // required to water all the plants static int reqOperationCnt( int []arr, int K) { // Stores current capacity // of the container int current_capacity = K; // Stores the final count int cnt = 0 ; // Loop to traverse arr[] for ( int i = 0 ; i < arr.length; i++) { // If required water is // more than max capacity if (arr[i] > K) { return - 1 ; } // If container does not // have enough water if (current_capacity < arr[i]) { // Update cnt cnt += 2 * i + 1 ; // Update current capacity // to the remaining water current_capacity = K - arr[i]; } else { // Update current capacity cnt++; current_capacity -= arr[i]; } } // Return Answer return cnt; } // Driver code public static void main (String args[]) { int []arr = { 2 , 2 , 3 , 3 }; int K = 5 ; System.out.println(reqOperationCnt(arr, K)); } } // This code is contributed by Samim Hossain Mondal. |
C#
// C# program for the above approach using System; class GFG { // Function to find count of operation // required to water all the plants static int reqOperationCnt( int []arr, int K) { // Stores current capacity // of the container int current_capacity = K; // Stores the final count int cnt = 0; // Loop to traverse arr[] for ( int i = 0; i < arr.Length; i++) { // If required water is // more than max capacity if (arr[i] > K) { return -1; } // If container does not // have enough water if (current_capacity < arr[i]) { // Update cnt cnt += 2 * i + 1; // Update current capacity // to the remaining water current_capacity = K - arr[i]; } else { // Update current capacity cnt++; current_capacity -= arr[i]; } } // Return Answer return cnt; } // Driver code public static void Main () { int []arr = { 2, 2, 3, 3 }; int K = 5; Console.Write(reqOperationCnt(arr, K)); } } // This code is contributed by Samim Hossain Mondal. |
Python3
# Python code for the above approach # Function to find count of operation # required to water all the plants def reqOperationCnt(arr, K): # Stores current capacity # of the container current_capacity = K # Stores the final count cnt = 0 # Loop to traverse arr[] for i in range ( len (arr)): # If required water is # more than max capacity if (arr[i] > K): return - 1 # If container does not # have enough water if (current_capacity < arr[i]): # Update cnt cnt + = 2 * i + 1 # Update current capacity # to the remaining water current_capacity = K - arr[i] else : # Update current capacity cnt + = 1 current_capacity - = arr[i] # Return Answer return cnt # Driver Code arr = [ 2 , 2 , 3 , 3 ] K = 5 print (reqOperationCnt(arr, K)) # This code is contributed by Saurabh Jaiswal |
Javascript
<script> // JavaScript code for the above approach // Function to find count of operation // required to water all the plants function reqOperationCnt(arr, K) { // Stores current capacity // of the container let current_capacity = K; // Stores the final count let cnt = 0; // Loop to traverse arr[] for (let i = 0; i < arr.length; i++) { // If required water is // more than max capacity if (arr[i] > K) { return -1; } // If container does not // have enough water if (current_capacity < arr[i]) { // Update cnt cnt += 2 * i + 1; // Update current capacity // to the remaining water current_capacity = K - arr[i]; } else { // Update current capacity cnt++; current_capacity -= arr[i]; } } // Return Answer return cnt; } // Driver Code let arr = [2, 2, 3, 3]; let K = 5; document.write(reqOperationCnt(arr, K)); // This code is contributed by Potta Lokesh </script> |
14
Time Complexity: O(N) since one traversal of the array is required to complete all operations hence the overall time required by the algorithm is linear
Auxiliary Space: O(1) since no extra array is used so the space taken by the algorithm is constant
Please Login to comment...