-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
72 lines (55 loc) · 982 Bytes
/
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
package main
import (
"encoding/csv"
"fmt"
"io"
"os"
"path"
)
func solve(r io.Reader) {
csvReader := csv.NewReader(r)
rows, err := csvReader.ReadAll()
if err != nil {
panic(err)
}
present := make(map[int]bool)
for _, row := range rows {
present[getId(row[0])] = true
}
for i := 0; i < 128*8; i++ {
_, pres := present[i]
_, presNext := present[i+1]
_, presPrev := present[i-1]
if !pres && presPrev && presNext {
fmt.Println(i)
}
}
}
func getId(pass string) int {
min, max := 0, 128
for i := 0; i < 7; i++ {
if pass[i] == 'F' {
max -= (max - min) / 2
} else {
min += (max - min) / 2
}
}
row := min
colMin, colMax := 0, 8
for i := 0; i < 3; i++ {
if pass[7+i] == 'L' {
colMax -= (colMax - colMin) / 2
} else {
colMin += (colMax - colMin) / 2
}
}
col := colMin
return row*8 + col
}
func main() {
input, err := os.Open(path.Join("2020", "5", "input.txt"))
if err != nil {
panic(err)
}
solve(input)
}