-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path11.container_with_most_water.cpp
48 lines (40 loc) · 1.1 KB
/
11.container_with_most_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
// Brute Force
class Solution {
public:
int maxArea(vector<int>& height) {
int res = 0;
for (int i = 0; i < height.size(); i++) {
for (int j = 0; j < height.size(); j++) {
res = max(res, min(height[i], height[j]) * (i - j));
}
}
return res;
}
};
// Time: O(n^2)
// Space: O(1)
// Two Pointers
class Solution {
public:
int maxArea(vector<int>& height) {
int l = 0; // Initialize left pointer
int r = height.size() - 1; // Initialize right pointer
int result = 0; // To store the maximum area
while (l < r) {
// Calculate area
int area = min(height[l], height[r]) * (r - l);
// Update maximum area
result = max(result, area);
// Move the pointer pointing to the shorter line
if (height[l] <= height[r]) {
l++;
} else {
r--;
}
}
// Return the maximum area
return result;
}
};
// Time: O(n)
// Space: o(1)