-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0542-01-matrix.js
45 lines (40 loc) · 1009 Bytes
/
0542-01-matrix.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* 542. 01 Matrix
* https://leetcode.com/problems/01-matrix/
* Difficulty: Medium
*
* Given an m x n binary matrix mat, return the distance of the nearest 0 for each cell.
*
* The distance between two adjacent cells is 1.
*/
/**
* @param {number[][]} matrix
* @return {number[][]}
*/
var updateMatrix = function(matrix) {
const queue = [];
for (let i = 0; i < matrix.length; i++) {
for (let j = 0; j < matrix[0].length; j++) {
if (matrix[i][j] === 0) {
queue.push([i, j, 0]);
} else {
matrix[i][j] = Infinity;
}
}
}
while (queue.length) {
const [i, j, k] = queue.shift();
if (matrix[i][j] > k) {
matrix[i][j] = k;
}
[[-1, 0], [1, 0], [0, -1], [0, 1]].forEach(p => {
const [x, y, z] = [i + p[0], j + p[1], k + 1];
if (x > -1 && x < matrix.length && y > -1 && y < matrix[0].length) {
if (matrix[x][y] === Infinity) {
queue.push([x, y, z]);
}
}
});
}
return matrix;
};