-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7.py
71 lines (63 loc) · 1.39 KB
/
7.py
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
import itertools
from intcode import intcode_v3
with open('../7.txt') as f:
i = [int(x) for x in f.read().split(',')]
best = 0
for (pA, pB, pC, pD, pE) in itertools.permutations((0, 1, 2, 3, 4)):
ampA = intcode_v3(i)
next(ampA)
ampA.send(pA)
ampB = intcode_v3(i)
next(ampB)
ampB.send(pB)
ampC = intcode_v3(i)
next(ampC)
ampC.send(pC)
ampD = intcode_v3(i)
next(ampD)
ampD.send(pD)
ampE = intcode_v3(i)
next(ampE)
ampE.send(pE)
oA = ampA.send(0)
oB = ampB.send(oA)
oC = ampC.send(oB)
oD = ampD.send(oC)
oE = ampE.send(oD)
if oE > best:
best = oE
print(best)
best = 0
for (pA, pB, pC, pD, pE) in itertools.permutations((5, 6, 7, 8, 9)):
ampA = intcode_v3(i)
next(ampA)
ampA.send(pA)
ampB = intcode_v3(i)
next(ampB)
ampB.send(pB)
ampC = intcode_v3(i)
next(ampC)
ampC.send(pC)
ampD = intcode_v3(i)
next(ampD)
ampD.send(pD)
ampE = intcode_v3(i)
next(ampE)
ampE.send(pE)
oE = 0
try:
while True:
oA = ampA.send(oE)
oB = ampB.send(oA)
oC = ampC.send(oB)
oD = ampD.send(oC)
oE = ampE.send(oD)
next(ampA)
next(ampB)
next(ampC)
next(ampD)
next(ampE)
except StopIteration:
if oE > best:
best = oE
print(best)