-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.go
82 lines (70 loc) · 1.16 KB
/
common.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
76
77
78
79
80
81
82
package main
import (
"bufio"
"errors"
"os"
)
var (
Width, Height = 50, 50
NotFound = errors.New("not found")
)
func parseInput() (map[P]byte, []byte, P) {
var robot P
m := map[P]byte{}
scanner := bufio.NewScanner(os.Stdin)
for i := 0; scanner.Scan(); i++ {
line := scanner.Text()
if line == "" {
break
}
for j, c := range line {
if c == '@' {
robot = P{i, j}
m[P{i, j}] = '.'
} else {
m[P{i, j}] = byte(c)
}
}
}
moves := []byte{}
for scanner.Scan() {
moves = append(moves, []byte(scanner.Text())...)
}
return m, moves, robot
}
type P struct{ x, y int }
func getDelta(move byte) P {
switch move {
case '<':
return P{0, -1}
case '>':
return P{0, 1}
case '^':
return P{-1, 0}
case 'v':
return P{1, 0}
}
panic("invalid move")
}
func findNextEmpty(m map[P]byte, p, delta P) (P, error) {
for {
p = P{p.x + delta.x, p.y + delta.y}
switch m[p] {
case '.':
return p, nil
case '#':
return P{}, NotFound
}
}
}
func gps(m map[P]byte, char byte) int {
sum := 0
for i := 0; i < Height; i++ {
for j := 0; j < Width; j++ {
if m[P{i, j}] == char {
sum += 100*i + j
}
}
}
return sum
}