-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmax_area_histagram.cpp
66 lines (61 loc) · 1.51 KB
/
max_area_histagram.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
#include <bits/stdc++.h>
using namespace std;
vector<int> nearestSmallerRight(vector<int> arr)
{
stack<pair<int, int>> st;
vector<int> result;
int n = arr.size();
for (int i = n - 1; i >= 0; i--)
{
if (!st.empty())
{
while (!st.empty() && st.top().first >= arr[i])
{
st.pop();
}
}
st.empty() ? result.push_back(-1) : result.push_back(st.top().second);
st.push({arr[i], i});
}
reverse(result.begin(), result.end());
return result;
}
vector<int> nearestSmallerLeft(vector<int> arr)
{
stack<pair<int, int>> st;
vector<int> result;
int n = arr.size();
for (int i = 0; i < n; i++)
{
if (!st.empty())
{
while (!st.empty() && st.top().first >= arr[i])
{
st.pop();
}
}
st.empty() ? result.push_back(-1) : result.push_back(st.top().second);
st.push({arr[i], i});
}
return result;
}
int maxAreaHistogram(vector<int> arr)
{
int maxArea = 0;
// We need to find smaller to left and greater to right
vector<int> rt_small = nearestSmallerRight(arr);
vector<int> lf_small = nearestSmallerLeft(arr);
for (int i = 0; i < arr.size(); i++)
{
int width = rt_small[i] - lf_small[i] - 1;
int area = arr[i] * width;
maxArea = max(maxArea, area);
}
return maxArea;
}
int main()
{
vector<int> arr{6, 2, 5, 4, 5, 1, 6};
cout<<maxAreaHistogram(arr);
return 0;
}