-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrapping Rain Water.cpp
59 lines (47 loc) · 1.04 KB
/
Trapping Rain Water.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//{ Driver Code Starts
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution {
public:
int maxWater(vector<int> &arr){
int totalWater=0;
int lmax=0,rmax=0;
int i=0,j=arr.size()-1;
while(i<j){
lmax=max(lmax,arr[i]);
rmax=max(rmax,arr[j]);
if(arr[i]<=arr[j]){
totalWater+=lmax-arr[i];
i++;
}
else{
totalWater+=rmax-arr[j];
j--;
}
}
return totalWater;
}
};
//{ Driver Code Starts.
int main() {
int t;
cin >> t;
cin.ignore();
while (t--) {
vector<int> arr;
string input;
// Read first array
getline(cin, input);
stringstream ss(input);
int number;
while (ss >> number) {
arr.push_back(number);
}
Solution ob;
int res = ob.maxWater(arr);
cout << res << endl << "~" << endl;
}
return 0;
}
// } Driver Code Ends