-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path18_exec_parallel.go
157 lines (135 loc) · 2.64 KB
/
18_exec_parallel.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
package main
import (
"fmt"
"metalim/advent/2017/lib/debug"
"metalim/advent/2017/lib/source"
"strconv"
. "github.com/logrusorgru/aurora"
)
var test1 = `set a 1
add a 2
mul a a
mod a 5
snd a
set a 0
rcv a
jgz a -1
set a 1
jgz a -2`
var test2 = `snd 1
snd 2
snd p
rcv a
rcv b
rcv c
rcv d`
func main() {
var ins source.Inputs
ins = ins.Test(1, test1, `4`)
ins = ins.Test(2, test2, `3`)
for par := range ins.Advent(2017, 18) {
fmt.Println(Brown("\n" + par.Name))
parl := par.Lines()
ssw := parl.Words()
ssn := parl.Ints() // unreliable to pair with Words, as it seems.
fmt.Println(len(ssw), Black(ssw[0]).Bold())
if par.Part(1) {
reg := map[string]int{}
var ip, snd, rcv int
LOOP1:
for ip >= 0 && ip < len(ssw) {
op := ssw[ip]
arg := ssn[ip]
val := func(i int) int {
if len(arg) > 0 {
return arg[0]
}
return reg[op[i]]
}
switch op[0] {
case "set":
reg[op[1]] = val(2)
case "add":
reg[op[1]] += val(2)
case "mul":
reg[op[1]] *= val(2)
case "mod":
reg[op[1]] %= val(2)
case "jgz":
if reg[op[1]] > 0 { // bug here. But works for part 1.
ip += val(2) - 1
}
case "snd":
snd = val(1)
case "rcv":
if snd != 0 {
rcv = snd
break LOOP1
}
}
ip++
}
par.SubmitInt(1, rcv)
}
if par.Part(2) {
var sent1 int
qs := [2][]int{}
ips := [2]int{}
regs := [2]map[string]int{{"p": 0}, {"p": 1}}
waiting := [2]bool{}
LOOP2:
for {
if waiting[0] && len(qs[0]) == 0 && waiting[1] && len(qs[1]) == 0 {
debug.Log("deadlock")
break LOOP2
}
NEXTP:
for p := 0; p <= 1; p++ {
ip := ips[p]
reg := regs[p]
op := ssw[ip]
val := func(i int) int {
if v, err := strconv.Atoi(op[i]); err == nil { // can't rely on .Ints(), as there can be 2 numbers.
return v
}
return reg[op[i]]
}
switch op[0] {
case "set":
reg[op[1]] = val(2)
case "add":
reg[op[1]] += val(2)
case "mul":
reg[op[1]] *= val(2)
case "mod":
reg[op[1]] %= val(2)
case "jgz":
if val(1) > 0 { // first argument can be number, dammit !!!
ips[p] += val(2)
continue NEXTP
}
case "snd":
if p == 1 {
sent1++
}
qs[1-p] = append(qs[1-p], val(1))
case "rcv":
if len(qs[p]) == 0 {
waiting[p] = true
continue NEXTP
}
waiting[p] = false
reg[op[1]] = qs[p][0]
qs[p] = qs[p][1:]
default:
panic("unknown instruction: " + fmt.Sprint(op))
}
ips[p] = ip + 1
}
}
par.SubmitInt(2, sent1)
}
}
}
func exec() {
}