Given an array of integers heights representing the histogram's bar height where the width of each bar is 1, return the area of the largest rectangle in the histogram.
Example 1:
Input: heights = [2,1,5,6,2,3]
Output: 10
Explanation: The above is a histogram where width of each bar is 1.
The largest rectangle is shown in the red area, which has an area = 10 units.
Example 2:
Input: heights = [2,4]
Output: 4
Constraints:
1 <= heights.length <= 105
0 <= heights[i] <= 104
Intuition
Approach 1: Brute Force
Basically, You go to a elements left and right
To find that elements range over the array
Do this for each element and find maximum
eg-> 2 1 9 6 7 3
For 6 -> go left till you find lower element than that
that is 1 here , in right 3
So take that width and multiply that value
Approach 2: Better (Monotonic stack)
Maintain stack in increasing order,
Take same example,
Find left smaller and right smaller using Stack
Apply right - left * arr[i]
For this
You pop, if the current element is smaller than stack top
This means, let say 6 7 9 Then comes current as 1 ,
We pop all beacuse
max height now can only be 1
Approach 3: Optimal
Rather than using two iterations to compute the
Leftsmall and rightsmall
We As soon as we encounter smaller stack top than current
We know that element is our right element for that stack top
and for left element we look at the just below the stack top
And story remains same
class Solution {
public:
int largestRectangleArea(vector < int > & histo) {
stack < int > st;
int maxA = 0;
int n = histo.size();
for (int i = 0; i <= n; i++) {
while (!st.empty() && (i == n || histo[st.top()] >= histo[i])) {
int height = histo[st.top()];
st.pop();
int width;
if (st.empty())
width = i;
else
width = i - st.top() - 1;
maxA = max(maxA, width * height);
}
st.push(i);
}
return maxA;
}
};