|
| 1 | +<p>You are given a <strong>0-indexed</strong> integer array <code>arr</code>, and an <code>m x n</code> integer <strong>matrix</strong> <code>mat</code>. <code>arr</code> and <code>mat</code> both contain <strong>all</strong> the integers in the range <code>[1, m * n]</code>.</p> |
| 2 | + |
| 3 | +<p>Go through each index <code>i</code> in <code>arr</code> starting from index <code>0</code> and paint the cell in <code>mat</code> containing the integer <code>arr[i]</code>.</p> |
| 4 | + |
| 5 | +<p>Return <em>the smallest index</em> <code>i</code> <em>at which either a row or a column will be completely painted in</em> <code>mat</code>.</p> |
| 6 | + |
| 7 | +<p> </p> |
| 8 | +<p><strong class="example">Example 1:</strong></p> |
| 9 | +<img alt="" src="image explanation for example 1" /><img alt="image explanation for example 1" src="https://assets.leetcode.com/uploads/2023/01/18/grid1.jpg" style="width: 321px; height: 81px;" /> |
| 10 | +<pre> |
| 11 | +<strong>Input:</strong> arr = [1,3,4,2], mat = [[1,4],[2,3]] |
| 12 | +<strong>Output:</strong> 2 |
| 13 | +<strong>Explanation:</strong> The moves are shown in order, and both the first row and second column of the matrix become fully painted at arr[2]. |
| 14 | +</pre> |
| 15 | + |
| 16 | +<p><strong class="example">Example 2:</strong></p> |
| 17 | +<img alt="image explanation for example 2" src="https://assets.leetcode.com/uploads/2023/01/18/grid2.jpg" style="width: 601px; height: 121px;" /> |
| 18 | +<pre> |
| 19 | +<strong>Input:</strong> arr = [2,8,7,4,1,3,5,6,9], mat = [[3,2,5],[1,4,6],[8,7,9]] |
| 20 | +<strong>Output:</strong> 3 |
| 21 | +<strong>Explanation:</strong> The second column becomes fully painted at arr[3]. |
| 22 | +</pre> |
| 23 | + |
| 24 | +<p> </p> |
| 25 | +<p><strong>Constraints:</strong></p> |
| 26 | + |
| 27 | +<ul> |
| 28 | + <li><code>m == mat.length</code></li> |
| 29 | + <li><code>n = mat[i].length</code></li> |
| 30 | + <li><code>arr.length == m * n</code></li> |
| 31 | + <li><code>1 <= m, n <= 10<sup>5</sup></code></li> |
| 32 | + <li><code>1 <= m * n <= 10<sup>5</sup></code></li> |
| 33 | + <li><code>1 <= arr[i], mat[r][c] <= m * n</code></li> |
| 34 | + <li>All the integers of <code>arr</code> are <strong>unique</strong>.</li> |
| 35 | + <li>All the integers of <code>mat</code> are <strong>unique</strong>.</li> |
| 36 | +</ul> |
0 commit comments