-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrap.cpp
40 lines (33 loc) · 824 Bytes
/
trap.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
#include <iostream>
#include <vector>
#include <stack>
#include <algorithm>
#include <numeric>
using namespace std;
// time: O(n * max(height)), space: O(1)
int trap(vector<int>& height) {
int l = 0;
int r = height.size() - 1;
int area = 0;
int height_track = 0;
while (l != r || height[l] > height_track) {
int l_val = height[l];
int r_val = height[r];
if (l_val <= height_track) {
l++;
continue;
}
if (r_val <= height_track) {
r--;
continue;
}
area += r - l + 1;
height_track++;
}
return area - accumulate(height.begin(), height.end(), 0);
}
int main() {
vector<int> height = {4,2,0,3,2,5};
cout << "Expected " << 9 << " got " << trap(height) << endl;
return 0;
}