-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmax_are_under_histogram.cpp
66 lines (61 loc) · 2.1 KB
/
max_are_under_histogram.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
class Solution {
public:
int largestRectangleArea(vector<int>& heights) {
/*
if(heights.size() == 0) return 0;
stack<int> st;
int max_rect_area = INT_MIN;
int index, curr_area, i;
for(i=0; i<=heights.size(); i++){
int cheight = i == heights.size() ? 0 : heights[i];
if(st.empty() || cheight >= heights[st.top()]){
st.push(i++);
}
else{
index = st.top();
st.pop();
*/
/*
height[index] = max_rect_seen_so_far
if stack is empty..
there is no earlier start that is present
this means... the current rect is the only start and end..
hence, curr_area = height[index] * i;
if stack is not empty..
there is earlier start that is present
this means... the current rect has the end..
hence, curr_area = height[index] * (i - s.top() - 1)
*/
/*
int breadth = st.empty() ? i : i - st.top() - 1;
max_rect_area = max(max_rect_area, heights[index] * breadth);
}
}
/*
while(!st.empty()){
index = st.top();
st.pop();
curr_area = heights[index] * (st.empty() ? i : i - st.top() - 1);
max_rect_area = max(curr_area, max_rect_area);
}*/
//return max_rect_area;
int ans = 0;
int len = heights.size();
if(len == 0){
return 0;
}
stack<int> st;
for(int i = 0; i <= len;){
int h = (i == len ? 0 : heights[i]);
if(st.empty() || heights[st.top()] <= h){
st.push(i++);
}else{
int tmp = st.top();
st.pop();
int l = (st.empty() ? i : i - st.top() - 1);
ans = max(ans, l * heights[tmp]);
}
}
return ans;
}
};