码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode84 柱状图

时间:2019-12-12 13:08:42      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:str   vector   ima   size   etc   mamicode   info   柱状图   turn   

技术图片

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 柱状图

标签:str   vector   ima   size   etc   mamicode   info   柱状图   turn   

原文地址:https://www.cnblogs.com/joelwang/p/12028266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!