-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday14.go
130 lines (117 loc) · 2.62 KB
/
day14.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
package main
import (
"aoc2021/util"
"fmt"
_ "strconv"
_ "strings"
"time"
)
func main() {
lines := util.GetLines("day14\\14.in")
start := time.Now()
day14a(lines)
duration := time.Since(start)
day14b(lines)
duration2 := time.Since(start)
fmt.Printf("p1: %s, p2: %s\n", duration, duration2-duration)
}
func day14a(lines []string) {
seed := lines[0]
// set up initial counter
counter := map[string]int{}
for _, r := range seed {
counter[string(r)]++
}
// set up initial parts list
parts := map[string]int{}
for i := 0; i < len(seed)-1; i++ {
parts[seed[i:i+2]]++
}
// set up rules
rules := map[string]string{}
for _, rule := range lines[2:] {
rules[rule[0:2]] = rule[6:7]
}
//run algorithm
goal := 10
for i := 0; i < goal; i++ {
// make new empty parts map
newParts := map[string]int{}
// use old part map as iteration base
for part, count := range parts {
if rules[part] != "" {
insertion := rules[part]
counter[insertion] += count
leftPair := string(part[0]) + insertion
rightPair := insertion + string(part[1])
newParts[leftPair] += count
newParts[rightPair] += count
} else {
newParts[part] += count
}
}
parts = newParts
}
// check max and min
min := 999999999999999999
max := -1
for _, c := range counter {
if c > max {
max = c
}
if c < min {
min = c
}
}
fmt.Printf("Solution for part A: %v\n", max-min)
}
func day14b(lines []string) {
seed := lines[0]
// set up initial counter
counter := map[string]uint64{}
for _, r := range seed {
counter[string(r)]++
}
// set up initial parts list
parts := map[string]uint64{}
for i := 0; i < len(seed)-1; i++ {
parts[seed[i:i+2]]++
}
// set up rules
rules := map[string]string{}
for _, rule := range lines[2:] {
rules[rule[0:2]] = rule[6:7]
}
//run algorithm
goal := 400
for i := 0; i < goal; i++ {
// make new empty parts map
newParts := map[string]uint64{}
// use old part map as iteration base
for part, count := range parts {
if rules[part] != "" {
insertion := rules[part]
counter[insertion] += count
leftPair := string(part[0]) + insertion
rightPair := insertion + string(part[1])
newParts[leftPair] += count
newParts[rightPair] += count
} else {
newParts[part] += count
}
}
parts = newParts
}
// check max and min
min := uint64(9999999999999999999)
max := uint64(0)
for _, c := range counter {
if c > max {
max = c
}
if c < min {
min = c
}
}
fmt.Printf("Solution for part B: %v\n", max-min)
}