1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 11:08:15 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/矩阵中的距离 [2bCMpM].html

41 lines
1.4 KiB
HTML
Raw Normal View History

2022-03-27 20:38:29 +08:00
<p>给定一个由 <code>0</code><code>1</code> 组成的矩阵 <code>mat</code>&nbsp;,请输出一个大小相同的矩阵,其中每一个格子是 <code>mat</code> 中对应位置元素到最近的 <code>0</code> 的距离。</p>
<p>两个相邻元素间的距离为 <code>1</code></p>
<p>&nbsp;</p>
<p><b>示例 1</b></p>
<p><img alt="" src="https://pic.leetcode-cn.com/1626667201-NCWmuP-image.png" style="width: 150px; " /></p>
<pre>
<strong>输入:</strong>mat =<strong> </strong>[[0,0,0],[0,1,0],[0,0,0]]
<strong>输出:</strong>[[0,0,0],[0,1,0],[0,0,0]]
</pre>
<p><b>示例 2</b></p>
<p><img alt="" src="https://pic.leetcode-cn.com/1626667205-xFxIeK-image.png" style="width: 150px; " /></p>
<pre>
<b>输入:</b>mat =<b> </b>[[0,0,0],[0,1,0],[1,1,1]]
<strong>输出:</strong>[[0,0,0],[0,1,0],[1,2,1]]
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>m == mat.length</code></li>
<li><code>n == mat[i].length</code></li>
<li><code>1 &lt;= m, n &lt;= 10<sup>4</sup></code></li>
<li><code>1 &lt;= m * n &lt;= 10<sup>4</sup></code></li>
<li><code>mat[i][j] is either 0 or 1.</code></li>
<li><code>mat</code> 中至少有一个 <code>0&nbsp;</code></li>
</ul>
<p>&nbsp;</p>
<p><meta charset="UTF-8" />注意:本题与主站 542&nbsp;题相同:<a href="https://leetcode-cn.com/problems/01-matrix/">https://leetcode-cn.com/problems/01-matrix/</a></p>