-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.go
114 lines (97 loc) · 2.19 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
package main
import (
"bufio"
"io"
"math"
"strings"
aoc "github.com/teivah/advent-of-code"
)
func fs1(input io.Reader) int {
scanner := bufio.NewScanner(input)
res := 0
for scanner.Scan() {
line := scanner.Text()
line = line[strings.Index(line, ": ")+2:]
del := aoc.NewDelimiter(line, " | ")
winning := make(map[int]bool)
for _, number := range aoc.NewDelimiter(strings.TrimSpace(del.GetString(0)), " ").GetStrings() {
number = strings.TrimSpace(number)
if number == "" {
continue
}
winning[aoc.StringToInt(number)] = true
}
count := 0
for _, number := range aoc.NewDelimiter(strings.TrimSpace(del.GetString(1)), " ").GetStrings() {
number = strings.TrimSpace(number)
if number == "" {
continue
}
if winning[aoc.StringToInt(number)] {
count++
}
}
if count == 0 {
continue
}
res += int(math.Pow(2, float64(count-1)))
}
return res
}
func fs2(input io.Reader) int {
scanner := bufio.NewScanner(input)
res := 0
cache := make(map[int][]int)
var copies []int
_ = cache
for scanner.Scan() {
res++
line := scanner.Text()
idx := strings.Index(line, ": ")
id := aoc.StringToInt(strings.TrimSpace(line[5:idx]))
if v, exists := cache[id]; exists {
copies = append(copies, v...)
res += len(v)
continue
}
line = line[idx+2:]
del := aoc.NewDelimiter(line, " | ")
winning := make(map[int]bool)
for _, number := range aoc.NewDelimiter(strings.TrimSpace(del.GetString(0)), " ").GetStrings() {
number = strings.TrimSpace(number)
if number == "" {
continue
}
winning[aoc.StringToInt(number)] = true
}
count := 0
for _, number := range aoc.NewDelimiter(strings.TrimSpace(del.GetString(1)), " ").GetStrings() {
number = strings.TrimSpace(number)
if number == "" {
continue
}
if winning[aoc.StringToInt(number)] {
count++
}
}
if count == 0 {
continue
}
var won []int
for i := 0; i < count; i++ {
won = append(won, id+i+1)
}
cache[id] = won
copies = append(copies, won...)
res += len(won)
}
for len(copies) != 0 {
id := copies[0]
copies = copies[1:]
if v, exists := cache[id]; exists {
copies = append(copies, v...)
res += len(v)
}
}
return res
}