-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday7_2.py
56 lines (40 loc) · 1.28 KB
/
day7_2.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
import intComputer
from itertools import permutations
perms = permutations([5, 6, 7, 8, 9])
ampOut = [0 for i in range(6)]
testPerm = [4,3,2,1,0] #file1
testPerm = [0,1,2,3,4] #file2
testPerm = [1,0,4,3,2] #file3
maxThrust = 0
maxPerm = [0,0,0,0,0]
fileName = "./inputs/day7_test4.txt"
f = open(fileName, "r")
fileInput = f.read()
fileInput = fileInput.split(',')
f.close()
testOutputs = []
fileData = [[0 for x in range(len(fileInput))] for y in range(len(ampOut)-1)]
# Gives format [amp][parameter]
for amp in range(len(ampOut)-1):
for i in range(len(fileInput)):
fileData[amp][i] = int(fileInput[i])
print(fileData)
perm = [9,8,7,6,5]
#for perm in perms:
for amp in range(len(ampOut)-1):
print("Trying phases", perm)
pos = 0
#Give phase value
print("----------------")
print("On aplifier", amp)
pos, fileData[amp], lastOutput = intComputer.runInstruction(fileData[amp],pos,perm[amp],0)
while pos >= 0:
print("Sending input", ampOut[amp])
pos, fileData[amp], lastOutput = intComputer.runInstruction(fileData[amp],pos,ampOut[amp],0)
#ampOut[amp+1] = testOutputs[len(testOutputs)-1]
print("Thrust is:", max(ampOut))
if max(ampOut) > maxThrust:
maxThrust = max(ampOut)
maxPerm = perm
print("Max thrust is", maxThrust, "at", maxPerm)
#print(intComputer.runInstruction(8, ))