首页 > 其他 > 详细

leetcode-84 柱状图中的最大矩形

时间:2019-07-22 09:54:30      阅读:106      评论:0      收藏:0      [点我收藏+]

leetcode-84 柱状图中的最大矩形

参考:负雪明烛
题目描述:

给定 n 个非负整数,用来表示柱状图中各个柱子的高度。每个柱子彼此相邻,且宽度为 1 。求在该柱状图中,能够勾勒出来的矩形的最大面积
感觉脑袋不够用,关键是找到右边界和左边界;

class Solution:
    def largestRectangleArea(self, heights: List[int]) -> int:
        stack = list()
        res = 0
        heights.append(0)
        N = len(heights)
        
        for i in range(N):
            if not stack or heights[i]>heights[stack[-1]]:
                stack.append(i)
            else:
                while stack and heights[i] <= heights[stack[-1]]:
                    h = heights[stack.pop()]
                    # 这里的w的计算
                    w = i if not stack else i - stack[-1] - 1
                    res = max(res,h*w)
                stack.append(i)
        return res

leetcode-84 柱状图中的最大矩形

原文:https://www.cnblogs.com/curtisxiao/p/11223502.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!