forked from aishwarydewangan/algorithms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContainer_With_Most_Water.cpp
72 lines (61 loc) · 2.51 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are
drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a
container, such that the container contains the most water.
Note: You may not slant the container and n is at least 2.
Example:
Input: [1,8,6,2,5,4,8,3,7]
Output: 49
*/
//Approach 1: Brute Force (Did that)
class Solution {
public:
int maxArea(vector<int>& height) {
int n = height.size();
if(n == 2) {
return min(height[0], height[1]);
}
int a = 1;
for(int i = n-1; i >=0; i--) {
for(int j = i-1; j >= 0; j--) {
int h = min(height[i], height[j]);
int w = i-j;
if(h*w > a) {
a = h*w;
}
}
}
return a;
}
};
/*Approach 2: Two Pointer Approach Algorithm
The intuition behind this approach is that the area formed between the lines will always be limited by the height of the shorter line.
Further, the farther the lines, the more will be the area obtained.
We take two pointers, one at the beginning and one at the end of the array constituting the length of the lines. Futher, we maintain a
variable maxarea to store the maximum area obtained till now. At every step, we find out the area formed between them, update maxarea
and move the pointer pointing to the shorter line towards the other end by one step.
How this approach works?
Initially we consider the area constituting the exterior most lines. Now, to maximize the area, we need to consider the area between the
lines of larger lengths. If we try to move the pointer at the longer line inwards, we won't gain any increase in area, since it is limited
by the shorter line. But moving the shorter line's pointer could turn out to be beneficial, as per the same argument, despite the reduction
in the width. This is done since a relatively longer line obtained by moving the shorter line's pointer might overcome the reduction in
area caused by the width reduction.
*/
class Solution {
public:
int maxArea(vector<int>& height) {
int h, w, a = 0;
int l = 0, r = height.size()-1;
while(l < r) {
h = min(height[l], height[r]);
w = r-l;
a = max(a, h*w);
if(height[l] < height[r]) {
l++;
} else {
r--;
}
}
return a;
}
};