leetcode84 柱状图

Posted Joel_Wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode84 柱状图相关的知识,希望对你有一定的参考价值。

O(n^2) time 应用heights[r]<=heights[r+1]剪枝;

class Solution {
public:
    int largestRectangleArea(vector<int>& heights) {
        int n=heights.size();
        int res=0;

        for(int r=0;r<n;r++){
            if(r<n-1 && heights[r]<=heights[r+1]) continue;
            int h=heights[r];
            for(int l=r;l>=0;l--){
                if(heights[l]<h) h=heights[l];
                int cur_s=(r-l+1)*h;
                if(res<cur_s) res=cur_s;
            }
        }
        return res;
    }
};

以上是关于leetcode84 柱状图的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 84. 柱状图中最大的矩形 | Python

leetcode84——柱状图的最大矩形

Leetcode 84.柱状图中最大的矩形

[LeetCode] 84. 柱状图中最大的矩形

LeetCode(84): 柱状图中最大的矩形

LeetCode84:柱状图中最大的矩形