-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.go
155 lines (136 loc) · 2.78 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package main
import (
"io"
aoc "github.com/teivah/advent-of-code"
)
const bingoLength = 5
func fs1(input io.Reader) int {
groups := aoc.StringGroups(aoc.ReaderToStrings(input))
bingo := toBingo(groups)
for i := 0; i < len(bingo.cards); i++ {
card := bingo.cards[i]
for j := 0; j < len(bingo.players); j++ {
player := bingo.players[j]
player.mark(card)
if player.isWinner() {
return player.score(card)
}
}
}
return 42
}
func toBingo(groups [][]string) *Bingo {
del := aoc.NewDelimiter(groups[0][0], ",")
cards := del.GetInts()
var players []*Player
for i := 1; i < len(groups); i++ {
pCards := make([][]int, bingoLength)
for row := 0; row < bingoLength; row++ {
pCards[row] = make([]int, 0, bingoLength)
s := groups[i][row]
for j := 0; j < len(s); j++ {
r := rune(s[j])
if aoc.IsRuneDecimal(r) {
k := j + 1
for ; k < len(s); k++ {
if !aoc.IsRuneDecimal(rune(s[k])) {
break
}
}
v := s[j:k]
pCards[row] = append(pCards[row], aoc.StringToInt(v))
j = k
}
}
}
players = append(players, &Player{cards: pCards, marked: newMarked()})
}
return &Bingo{
cards: cards,
players: players,
}
}
type Bingo struct {
cards []int
players []*Player
}
type Player struct {
cards [][]int
marked [][]bool
}
func newMarked() [][]bool {
res := make([][]bool, bingoLength)
for i := 0; i < bingoLength; i++ {
res[i] = make([]bool, bingoLength)
}
return res
}
func (p *Player) mark(v int) {
for row := 0; row < bingoLength; row++ {
for col := 0; col < bingoLength; col++ {
if p.cards[row][col] == v {
p.marked[row][col] = true
}
}
}
}
func (p *Player) isWinner() bool {
for row := 0; row < bingoLength; row++ {
win := true
for col := 0; col < bingoLength; col++ {
if !p.marked[row][col] {
win = false
break
}
}
if win {
return true
}
}
for col := 0; col < bingoLength; col++ {
win := true
for row := 0; row < bingoLength; row++ {
if !p.marked[row][col] {
win = false
break
}
}
if win {
return true
}
}
return false
}
func (p *Player) score(v int) int {
sum := 0
for row := 0; row < bingoLength; row++ {
for col := 0; col < bingoLength; col++ {
if !p.marked[row][col] {
sum += p.cards[row][col]
}
}
}
return sum * v
}
func fs2(input io.Reader) int {
groups := aoc.StringGroups(aoc.ReaderToStrings(input))
bingo := toBingo(groups)
remaining := make(map[int]bool)
for i := range bingo.players {
remaining[i] = true
}
for i := 0; i < len(bingo.cards); i++ {
card := bingo.cards[i]
for j := 0; j < len(bingo.players); j++ {
player := bingo.players[j]
player.mark(card)
if player.isWinner() {
delete(remaining, j)
if len(remaining) == 0 {
return player.score(card)
}
}
}
}
return 42
}