-
Notifications
You must be signed in to change notification settings - Fork 0
/
542.go
75 lines (65 loc) · 1.32 KB
/
542.go
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
package p542
import "math"
/**
Given a matrix consists of 0 and 1, find the distance of the nearest 0 for each cell.
The distance between two adjacent cells is 1.
Example 1:
Input:
0 0 0
0 1 0
0 0 0
Output:
0 0 0
0 1 0
0 0 0
Example 2:
Input:
0 0 0
0 1 0
1 1 1
Output:
0 0 0
0 1 0
1 2 1
Note:
The number of elements of the given matrix will not exceed 10,000.
There are at least one 0 in the given matrix.
The cells are adjacent in only four directions: up, down, left and right.
*/
type pos struct {
x int
y int
}
func updateMatrix(matrix [][]int) [][]int {
if matrix == nil {
return nil
}
queue := make([]pos, 0)
distance := make([][]int, len(matrix))
for i := 0; i < len(distance); i++ {
distance[i] = make([]int, len(matrix[i]))
copy(distance[i], matrix[i])
for j := 0; j < len(distance[i]); j++ {
if distance[i][j] == 0 {
queue = append(queue, pos{i, j})
} else {
distance[i][j] = math.MaxInt32
}
}
}
dirs := []pos{{1, 0}, {-1, 0}, {0, 1}, {0, -1}}
for len(queue) > 0 {
h := queue[0]
queue = queue[1:]
for _, d := range dirs {
x, y := h.x+d.x, h.y+d.y
if x >= 0 && x < len(distance) && y >= 0 && y < len(distance[x]) {
if distance[x][y] > distance[h.x][h.y]+1 {
distance[x][y] = distance[h.x][h.y] + 1
queue = append(queue, pos{x, y})
}
}
}
}
return distance
}