-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
96 lines (79 loc) · 1.47 KB
/
main.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
package main
import (
"github.com/danvolchek/AdventOfCode/lib"
"strings"
)
type instruction struct {
left bool
distance int
}
func parse(line string) []instruction {
parts := strings.Split(strings.TrimSpace(line), ", ")
return lib.Map(parts, func(p string) instruction {
return instruction{
left: p[0] == 'L',
distance: lib.Int(p),
}
})
}
func solve(lines []instruction) int {
type pos struct{ x, y int }
var seen lib.Set[pos]
var x, y int
var dir int
// 0 north
// 1 east
// 2 south
// 3 west
for _, line := range lines {
//fmt.Printf("%+v\n", line)
if line.left {
dir = (dir - 1 + 4) % 4
} else {
dir = (dir + 1) % 4
}
//fmt.Println(dir)
newX, newY := x, y
switch dir {
case 0:
newY += line.distance
case 1:
newX += line.distance
case 2:
newY -= line.distance
case 3:
newX -= line.distance
default:
panic(dir)
}
xDir, yDir := 1, 1
if dir == 2 {
yDir = -1
}
if dir == 3 {
xDir = -1
}
for xx := x + xDir; xx != newX+xDir; xx += xDir {
if seen.Contains(pos{xx, y}) {
return lib.Abs(xx) + lib.Abs(y)
}
seen.Add(pos{xx, y})
}
for yy := y + yDir; yy != newY+yDir; yy += yDir {
if seen.Contains(pos{x, yy}) {
return lib.Abs(x) + lib.Abs(yy)
}
seen.Add(pos{x, yy})
}
x, y = newX, newY
}
panic("no dupe")
}
func main() {
solver := lib.Solver[[]instruction, int]{
ParseF: parse,
SolveF: solve,
}
solver.Expect("R8, R4, R4, R8", 4)
solver.Verify(153)
}