1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/最大矩形 [PLYXKQ].html

59 lines
1.7 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给定一个由&nbsp;<code>0</code><code>1</code>&nbsp;组成的矩阵 <code>matrix</code>&nbsp;,找出只包含 <code>1</code> 的最大矩形,并返回其面积。</p>
<p><strong>注意:</strong>此题 <code>matrix</code>&nbsp;输入格式为一维 <code>01</code> 字符串数组。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<p><img alt="" src="https://assets.leetcode.com/uploads/2020/09/14/maximal.jpg" style="width: 402px; height: 322px;" /></p>
<pre>
<strong>输入:</strong>matrix = [&quot;10100&quot;,&quot;10111&quot;,&quot;11111&quot;,&quot;10010&quot;]
<strong>输出:</strong>6
<strong>解释:</strong>最大矩形如上图所示。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>matrix = []
<strong>输出:</strong>0
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>matrix = [&quot;0&quot;]
<strong>输出:</strong>0
</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>matrix = [&quot;1&quot;]
<strong>输出:</strong>1
</pre>
<p><strong>示例 5</strong></p>
<pre>
<strong>输入:</strong>matrix = [&quot;00&quot;]
<strong>输出:</strong>0
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>rows == matrix.length</code></li>
<li><code>cols == matrix[0].length</code></li>
<li><code>0 &lt;= row, cols &lt;= 200</code></li>
<li><code>matrix[i][j]</code><code>&#39;0&#39;</code><code>&#39;1&#39;</code></li>
</ul>
<p>&nbsp;</p>
<p>注意:本题与主站 85 题相同(输入参数格式不同):&nbsp;<a href="https://leetcode-cn.com/problems/daily-temperatures/">https://leetcode-cn.com/problems/maximal-rectangle/</a></p>