forked from mickey0524/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1091.Shortest-Path-in-Binary-Matrix.go
64 lines (54 loc) · 1.11 KB
/
1091.Shortest-Path-in-Binary-Matrix.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
// https://leetcode.com/problems/shortest-path-in-binary-matrix/
//
// algorithms
// Medium (35.69%)
// Total Accepted: 3,868
// Total Submissions: 10,837
// beats 100.0% of golang submissions
package leetcode
type point struct {
i int
j int
sum int
}
func shortestPathBinaryMatrix(grid [][]int) int {
length := len(grid)
delta := [][]int{{1, 0}, {-1, 0}, {0, 1}, {0, -1}, {-1, -1}, {-1, 1}, {1, -1}, {1, 1}}
if grid[0][0] == 1 {
return -1
}
if length == 1 {
return 1
}
var q []point
q = append(q, point{
i: 0,
j: 0,
sum: 1,
})
for len(q) > 0 {
curP := q[0]
q = q[1:]
for _, d := range delta {
if checkPosition(curP.i+d[0], curP.j+d[1], length, grid) {
nextI, nextJ := curP.i+d[0], curP.j+d[1]
if nextI == length-1 && nextJ == length-1 {
return curP.sum + 1
}
q = append(q, point{
i: nextI,
j: nextJ,
sum: curP.sum + 1,
})
grid[nextI][nextJ] = 1
}
}
}
return -1
}
func checkPosition(i, j, length int, grid [][]int) bool {
if i < 0 || i >= length || j < 0 || j >= length || grid[i][j] == 1 {
return false
}
return true
}