-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
292 lines (251 loc) · 6.03 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package main
import (
"fmt"
"strings"
aoc "github.com/shraddhaag/aoc/library"
)
func main() {
input := aoc.ReadFileLineByLine("input.txt")
fmt.Println("answer for part 1: ", ans1(input))
fmt.Println("answer for part 2: ", ans2(input))
}
type flipFlopModule struct {
destination []string
state string
}
type conjunctionModule struct {
source map[string]pulse
destination []string
}
type broadcast struct {
destination []string
}
func makeMap(input []string) (broadcast, map[string]conjunctionModule, map[string]flipFlopModule) {
b := broadcast{}
c := make(map[string]conjunctionModule)
f := make(map[string]flipFlopModule)
for _, line := range input {
dest := strings.Split(line[strings.Index(line, ">")+2:], ", ")
if strings.Contains(line, "broadcaster") {
b = broadcast{
destination: dest,
}
continue
}
name := line[1:strings.Index(line, " ")]
switch line[0] {
case '&':
c[name] = conjunctionModule{
destination: dest,
}
case '%':
f[name] = flipFlopModule{
destination: dest,
state: "off",
}
}
}
for name, m := range f {
for _, i := range m.destination {
if _, ok := c[i]; ok {
if len(c[i].source) == 0 {
s := c[i]
s.source = make(map[string]pulse)
c[i] = s
}
c[i].source[name] = low
}
}
}
for name, m := range c {
for _, i := range m.destination {
if _, ok := c[i]; ok {
if len(c[i].source) == 0 {
s := c[i]
s.source = make(map[string]pulse)
c[i] = s
}
c[i].source[name] = low
}
}
}
return b, c, f
}
type pulse string
const (
high pulse = "high"
low pulse = "low"
)
func handleFlipFlop(typeOfPulse pulse, source string, m flipFlopModule, c map[string]conjunctionModule) (flipFlopModule, pulse, []string) {
switch typeOfPulse {
case high:
return m, "", nil
case low:
switch m.state {
case "off":
m.state = "on"
updateConjunctionSources(high, source, m.destination, c)
return m, high, m.destination
case "on":
m.state = "off"
updateConjunctionSources(low, source, m.destination, c)
return m, low, m.destination
}
}
panic("invalid flip flop encountered")
}
func updateConjunctionSources(typeOfPulse pulse, source string, destinations []string, c map[string]conjunctionModule) {
for _, dest := range destinations {
if _, ok := c[dest]; ok {
c[dest].source[source] = typeOfPulse
}
}
}
func handleConjunction(typeOfPulse pulse, c conjunctionModule, source string, cMap map[string]conjunctionModule) (pulse, []string) {
countHigh := 0
for _, s := range c.source {
if s == high {
countHigh++
}
}
// if all sources sent a high pulse, send low
if countHigh == len(c.source) {
updateConjunctionSources(low, source, c.destination, cMap)
return low, c.destination
}
updateConjunctionSources(high, source, c.destination, cMap)
return high, c.destination
}
type pulseIn struct {
p pulse
name string
from string
}
func ans1(input []string) int {
broad, conMap, ffMap := makeMap(input)
toEvaluateInitial := []pulseIn{}
// add all initial pulses
for _, b := range broad.destination {
toEvaluateInitial = append(toEvaluateInitial, pulseIn{
p: low,
name: b,
})
}
countLow := 0
countHigh := 0
for i := 0; i < 1000; i++ {
toEvaluate := toEvaluateInitial
countLow++
for len(toEvaluate) != 0 {
start := toEvaluate[0]
if start.p == low {
countLow++
}
if start.p == high {
countHigh++
}
// if node is a flip flop
if ff, ok := ffMap[start.name]; ok {
ff, newPulse, dest := handleFlipFlop(start.p, start.name, ff, conMap)
ffMap[start.name] = ff
toEvaluate = append(toEvaluate, fetchNewPulseIn(newPulse, dest, start.name)...)
}
// if the node is a conjucation
if con, ok := conMap[start.name]; ok {
newPulse, dest := handleConjunction(start.p, con, start.name, conMap)
toEvaluate = append(toEvaluate, fetchNewPulseIn(newPulse, dest, start.name)...)
}
toEvaluate = toEvaluate[1:]
}
}
return countHigh * countLow
}
type loop struct {
start int
lenght int
}
func ans2(input []string) int {
broad, conMap, ffMap := makeMap(input)
toEvaluateInitial := []pulseIn{}
// add all initial pulses
for _, b := range broad.destination {
toEvaluateInitial = append(toEvaluateInitial, pulseIn{
p: low,
name: b,
})
}
toReadStates := findStatesLeadingToRX(conMap)
loopRanges := make(map[pulseIn]loop)
for _, state := range toReadStates {
count := 0
i := 0
for count != 2 {
i++
toEvaluate := toEvaluateInitial
for len(toEvaluate) != 0 {
start := toEvaluate[0]
if start == state && count == 0 {
loopRanges[state] = loop{
start: i,
}
count++
} else if start == state && count == 1 {
s := loopRanges[state]
s.lenght = i - s.start
loopRanges[state] = s
count++
break
}
// if node is a flip flop
if ff, ok := ffMap[start.name]; ok {
ff, newPulse, dest := handleFlipFlop(start.p, start.name, ff, conMap)
ffMap[start.name] = ff
toEvaluate = append(toEvaluate, fetchNewPulseIn(newPulse, dest, start.name)...)
}
// if the node is a conjucation
if con, ok := conMap[start.name]; ok {
newPulse, dest := handleConjunction(start.p, con, start.name, conMap)
toEvaluate = append(toEvaluate, fetchNewPulseIn(newPulse, dest, start.name)...)
}
toEvaluate = toEvaluate[1:]
}
}
}
findLCM := []int{}
for _, l := range loopRanges {
findLCM = append(findLCM, l.lenght)
}
return aoc.LCM(findLCM)
}
func findStatesLeadingToRX(conMap map[string]conjunctionModule) []pulseIn {
output := []pulseIn{}
for name, c := range conMap {
for _, d := range c.destination {
if d == "rx" {
for n, _ := range c.source {
output = append(output, pulseIn{
p: high,
name: name,
from: n,
})
}
}
}
}
return output
}
func fetchNewPulseIn(p pulse, dest []string, source string) []pulseIn {
output := []pulseIn{}
if p == "" {
return output
}
for _, d := range dest {
o := pulseIn{
p: p,
name: d,
from: source,
}
output = append(output, o)
}
return output
}