-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain2.go
64 lines (50 loc) · 978 Bytes
/
main2.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
package main
import "fmt"
func main() {
m, pos, dir := parseMap()
visited := run(m, pos, dir)
var count int
for obstacle := range visited {
if testObstacle(m, obstacle, pos, dir) {
count++
}
}
fmt.Println(count)
}
type status struct {
Pos P
Dir Direction
}
func testObstacle(m map[P]struct{}, obstacle P, pos P, dir Direction) bool {
// impossible if the guard is there
if obstacle == pos {
return false
}
// impossible if there is already an obstacle there
if _, ok := m[obstacle]; ok {
return false
}
m[obstacle] = struct{}{}
defer func() {
delete(m, obstacle)
}()
visited := map[status]struct{}{
status{pos, dir}: {},
}
for {
next := pos.Next(dir)
if next.x < 0 || next.x >= Size || next.y < 0 || next.y >= Size {
return false
}
if _, ok := m[next]; ok {
dir = (dir + 1) % 4
} else {
pos = next
}
st := status{pos, dir}
if _, ok := visited[st]; ok {
return true
}
visited[st] = struct{}{}
}
}