LC 2661. 找出叠涂元素
题目描述
这是 LeetCode 上的 2661. 找出叠涂元素 ,难度为 中等。
给你一个下标从 $0$ 开始的整数数组 arr
和一个 $m \times n$ 的整数矩阵 mat
。
arr
和 mat
都包含范围 $[1,m \times n]$ 内的所有整数。
从下标 $0$ 开始遍历 arr
中的每个下标 i
,并将包含整数 arr[i]
的 mat
单元格涂色。
请你找出 arr
中在 mat
的某一行或某一列上都被涂色且下标最小的元素,并返回其下标 $i$ 。
示例 1:
1 |
|
示例 2:1
2
3
4
5
6
7image explanation for example 2
输入:arr = [2,8,7,4,1,3,5,6,9], mat = [[3,2,5],[1,4,6],[8,7,9]]
输出:3
解释:遍历如上图所示,arr[3] 在矩阵中的第二列上都被涂色。
提示:
- $m = mat.length$
- $n = mat[i].length$
- $arr.length = m \times n$
- $1 <= m, n <= 10^5$
- $1 <= m \times n <= 105$
- $1 <= arr[i], mat[r][c] <= m \times n$
arr
中的所有整数互不相同mat
中的所有整数互不相同
哈希表
利用 mat
的数值各不相同,先使用「哈希表」对 mat
进行转存,以 $mat[i][j]$ 为键,$(i, j)$ 为值,方便后续快速查询某个值所在位置。
创建数组 c1
和 c2
,分别记录某行某列有多少单元格被涂色,如 c1[x] = a
代表第 $x$ 行被涂色单元格数量为 $a$ 个,c2[y] = b
代表第 $y$ 列被涂色单元格数量为 $b$ 个。
遍历所有的 $arr[i]$,查询到 $arr[i]$ 的所在位置 $(x, y)$ 后,更新 c1
和 c2
,若某行或某列被完全涂色,返回当前下标。
Java 代码:
1 |
|
C++ 代码:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19class Solution {
public:
int firstCompleteIndex(vector<int>& arr, vector<vector<int>>& mat) {
int n = mat.size(), m = mat[0].size();
unordered_map<int, pair<int, int>> map;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
map[mat[i][j]] = make_pair(i, j);
}
}
vector<int> c1(n), c2(m);
for (int i = 0; i < n * m; i++) {
pair<int, int> info = map[arr[i]];
int x = info.first, y = info.second;
if (++c1[x] == m || ++c2[y] == n) return i;
}
return -1; // never
}
};
Python 代码:1
2
3
4
5
6
7
8
9
10class Solution:
def firstCompleteIndex(self, arr: List[int], mat: List[List[int]]) -> int:
n, m = len(mat), len(mat[0])
mapping = {mat[i][j]: (i, j) for i in range(n) for j in range(m)}
c1, c2 = [0] * n, [0] * m
for i in range(n * m):
x, y = mapping[arr[i]]
c1[x], c2[y] = c1[x] + 1, c2[y] + 1
if c1[x] == m or c2[y] == n: return i
return -1 # never
TypeScript 代码:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15function firstCompleteIndex(arr: number[], mat: number[][]): number {
const n = mat.length, m = mat[0].length;
const map: { [key: number]: [number, number] } = {};
for (let i = 0; i < n; i++) {
for (let j = 0; j < m; j++) {
map[mat[i][j]] = [i, j];
}
}
const c1 = new Array(n).fill(0), c2 = new Array(m).fill(0);
for (let i = 0; i < n * m; i++) {
const [x, y] = map[arr[i]];
if (++c1[x] == m || ++c2[y] === n) return i;
}
return -1; // never
};
- 时间复杂度:$O(n \times m)$
- 空间复杂度:$O(n \times m)$
最后
这是我们「刷穿 LeetCode」系列文章的第 No.2661
篇,系列开始于 2021/01/01,截止于起始日 LeetCode 上共有 1916 道题目,部分是有锁题,我们将先把所有不带锁的题目刷完。
在这个系列文章里面,除了讲解解题思路以外,还会尽可能给出最为简洁的代码。如果涉及通解还会相应的代码模板。
为了方便各位同学能够电脑上进行调试和提交代码,我建立了相关的仓库:https://github.com/SharingSource/LogicStack-LeetCode 。
在仓库地址里,你可以看到系列文章的题解链接、系列文章的相应代码、LeetCode 原题链接和其他优选题解。
本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!