-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
79 lines (68 loc) · 1.25 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
package main
import (
"bufio"
"fmt"
"os"
"strconv"
"strings"
)
func main() {
var input []string
scanner := bufio.NewScanner(os.Stdin)
for scanner.Scan() {
input = append(input, scanner.Text())
}
acc, _ := run(input)
fmt.Printf("Part 1: %d\n", acc)
acc = fixAndRun(input)
fmt.Printf("Part 2: %d\n", acc)
}
func run(instructions []string) (acc int, ok bool) {
seen := make(map[int]struct{})
var cur int
for cur < len(instructions) {
if _, ok := seen[cur]; ok {
return acc, false
}
seen[cur] = struct{}{}
inst := instructions[cur]
split := strings.Split(inst, " ")
op, argStr := split[0], split[1]
arg, _ := strconv.Atoi(argStr)
switch op {
case "acc":
acc += arg
case "jmp":
cur += arg
continue
}
cur++
}
return acc, true
}
func fixAndRun(instructions []string) (acc int) {
replace := func(idx int) bool {
split := strings.Split(instructions[idx], " ")
op, argStr := split[0], split[1]
switch op {
case "jmp":
op = "nop"
case "nop":
op = "jmp"
default:
return false
}
instructions[idx] = op + " " + argStr
return true
}
for cur := range instructions {
if replace(cur) {
if acc, ok := run(instructions); ok {
return acc
} else {
replace(cur)
}
}
}
return 0
}