wangcy6 / leetcode

LeetCode Problems' Solutions
6 stars 1 forks source link

【每日一题】-2020年12月27日 85. 最大矩形 #19

Open watchpoints opened 3 years ago

watchpoints commented 3 years ago

给定一个仅包含 0 和 1 、大小为 rows x cols 的二维二进制矩阵,找出只包含 1 的最大矩形,并返回其面积。 image

示例 2:

输入:matrix = [] 输出:0 示例 3:

输入:matrix = [["0"]] 输出:0 示例 4:

输入:matrix = [["1"]] 输出:1 示例 5:

输入:matrix = [["0","0"]] 输出:0

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/maximal-rectangle 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

watchpoints commented 3 years ago

必须学会这个。84. 柱状图中最大的矩形 https://leetcode-cn.com/problems/largest-rectangle-in-histogram/