import java.util.Stack;
class Solution {
public int largestRectangleArea(int[] height) {
Stack<Integer>st=new Stack<Integer>();
int res = 0;
int[]a = new int[height.length+1];
for(int i=0;i<height.length;i++)a[i]=height[i];
a[height.length]=0;
for(int i=0; i<a.length; i++) {
while(!st.isEmpty() && a[st.peek()]>=a[i]) {
int idx = st.pop();
int width = i-(st.isEmpty()?-1:st.peek())-1;
res = Math.max(res, a[idx]*width);
}
st.add(i);
}
return res;
}
public static void main(String[] args) {
Solution s=new Solution();
System.out.println(s.largestRectangleArea(new int[]{2,1,5,6,2,3}));
System.out.println(s.largestRectangleArea(new int[]{1}));
}
}
84. Largest Rectangle in Histogram
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 首先,可以使用暴力破解法,以每一个数字作为高度,随后遍历找出长度,最后进行大小的匹配即可,但是由于是O(n^2)复...
- Given n non-negative integers representing the histogram'...
- https://leetcode.com/problems/largest-rectangle-in-histog...
- 文章作者:Tyan博客:noahsnail.com | CSDN | 简书 1. Description 2. S...
- 第一版:超时,双层循环。 看了看tag,用栈的话,加以优化。Largest Rectangle in Histog...