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

二维单调栈

递增栈

相关推荐
珊瑚里的鱼28 分钟前
【单链表算法实战】解锁数据结构核心谜题——环形链表
数据结构·学习·程序人生·算法·leetcode·链表·visual studio
gentle_ice33 分钟前
leetcode——矩阵置零(java)
java·算法·leetcode·矩阵
sysu632 小时前
95.不同的二叉搜索树Ⅱ python
开发语言·数据结构·python·算法·leetcode·面试·深度优先
‘’林花谢了春红‘’2 小时前
Leetcode::3432. 统计元素和差值为偶数的分区方案
算法·leetcode·职场和发展
SsummerC2 小时前
【leetcode100】从前序与中序遍历序列构造二叉树
python·算法·leetcode
maybe_YX2 小时前
1_相向双指针_leetcode_167_1
算法·leetcode
醇醛酸醚酮酯2 小时前
Leetcode100热题——盛水最多容器
算法·leetcode
এ旧栎5 小时前
蓝桥与力扣刷题(160 相交链表)
算法·leetcode·链表·学习方法
KpLn_HJL7 小时前
leetcode - 127. Word Ladder
leetcode·c#·word
珊瑚里的鱼13 小时前
单链表算法实战:解锁数据结构核心谜题——移除链表元素
数据结构·程序人生·算法·leetcode·链表·学习方法·visual studio