-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmatrix.js
46 lines (42 loc) Β· 1002 Bytes
/
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
46
/**
*
* @param {number[][]} matrix
* @return {number[][]}
*/
const updateMatrix = matrix => {
const m = matrix.length;
const n = matrix[0].length;
const dist = Array(m)
.fill()
.map(() => Array(n).fill(Number.MAX_SAFE_INTEGER));
for (let i = 0; i < m; i++) {
for (let j = 0; j < n; j++) {
if (matrix[i][j] === 0) {
dist[i][j] = 0;
} else {
if (i > 0) {
dist[i][j] = Math.min(dist[i][j], dist[i - 1][j] + 1);
}
if (j > 0) {
dist[i][j] = Math.min(dist[i][j], dist[i][j - 1] + 1);
}
}
}
}
for (let i = m - 1; i >= 0; i--) {
for (let j = n - 1; j >= 0; j--) {
if (matrix[i][j] === 0) {
dist[i][j] = 0;
} else {
if (i < m - 1) {
dist[i][j] = Math.min(dist[i][j], dist[i + 1][j] + 1);
}
if (j < n - 1) {
dist[i][j] = Math.min(dist[i][j], dist[i][j + 1] + 1);
}
}
}
}
return dist;
};
export { updateMatrix };