85. Maximal Rectangle

85. Maximal Rectangle

python 复制代码
class Solution:
    def maximalRectangle(self, matrix: List[List[str]]) -> int:
        def hist(heights):
            stack,ans=[],0
            for i,h in enumerate(heights+[0]):
                while stack and heights[stack[-1]]>=h:
                    H=heights[stack.pop()]
                    W=i if not stack else i-stack[-1]-1
                    ans=max(ans,H*W)
                stack.append(i)
            return ans

        if not matrix or not matrix[0]: return 0

        m,n,ans=len(matrix[0]),len(matrix),0
        row=[0]*m
        for i in range(n):
            for j in range(m):
                row[j]=0 if matrix[i][j]=='0' else row[j]+1
            ans=max(ans,hist(row))
        return ans

二维单调栈

递增栈

相关推荐
.格子衫.43 分钟前
006贪心——算法备赛
数据结构·算法·leetcode
石去皿3 小时前
力扣hot100 61-70记录
c++·算法·leetcode·深度优先
Demons_kirit6 小时前
LeetCode 1863.找出所有子集的异或总和再求和
数据结构·算法·leetcode
竹下为生6 小时前
LeetCode --- 443周赛
算法·leetcode·职场和发展
雾里看山6 小时前
算法思想之双指针(一)
算法·leetcode·推荐算法
2401_827499996 小时前
leetcode-热题100(3)
数据结构·算法·leetcode
luckyme_8 小时前
leetcode-代码随想录-哈希表-四数相加Ⅱ
算法·leetcode·散列表
破东风11 小时前
leetcode每日一题:替换子串得到平衡字符串
算法·leetcode·滑动窗口
梭七y17 小时前
【力扣hot100题】(032)排序链表
算法·leetcode·链表
SsummerC17 小时前
【leetcode100】数组中的第K个最大元素
python·算法·leetcode