-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday13.py
126 lines (102 loc) · 3.08 KB
/
day13.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
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
import logging
from collections import defaultdict
import numpy as np
logging.basicConfig(
level=logging.DEBUG,
handlers=[logging.StreamHandler(), logging.FileHandler("log.log")],
)
log = logging.getLogger(__name__)
from day05 import (
add,
equals,
input_,
jump_if_false,
jump_if_true,
less_than,
mult,
parse_opcode,
parse_parameters,
)
from day09 import adjust_base
def output_(tape, register):
output, _, _ = parse_parameters(tape, register)
# instruction_pointer = register["instruction_pointer"]
# output = tape[instruction_pointer + 1]
# output = output if register["parameter1_mode"] else tape[output]
register["output"].append(output)
register["instruction_pointer"] += 2
# log.debug("Output: %s", output)
return tape, register
operation = {
1: add,
2: mult,
3: input_,
4: output_,
5: jump_if_true,
6: jump_if_false,
7: less_than,
8: equals,
9: adjust_base,
}
def process_tape(tape, input_list):
register = dict(
instruction_pointer=0,
opcode=0,
parameter1_mode=0,
parameter2_mode=0,
parameter3_mode=0,
input_list=input_list,
input=input_list[0],
output=[],
relative_base=0,
)
while True:
parse_opcode(tape[register["instruction_pointer"]], register)
opcode = register["opcode"]
# log.debug("Current Output: %s", register["output"])
# log.debug("Current OpCode: %s", register["opcode"])
if opcode == 99:
return tape, register
else:
tape, register = operation[opcode](tape, register)
def part2(tape):
tape[0] = 2
inp = 2
while True:
t, r = process_tape(tape, [inp])
output_array = np.array(r["output"], dtype=np.int).reshape(-1, 3)
picture = np.zeros((101, 101), dtype=np.int)
for sequence in output_array:
x, y, symbol = sequence
if x == -1 and y == 0:
current_score = symbol
continue
picture[x][y] = symbol
log.debug("Current score: %s", current_score)
paddle, _ = np.where(picture == 3)
ball, _ = np.where(picture == 4)
paddle = paddle[0]
ball = ball[0]
if ball < paddle:
inp = -1
elif ball > paddle:
inp = 1
else:
inp = 0
if __name__ == "__main__":
with open("day13_input.txt") as f:
original_list = [int(x) for x in f.readline().split(",")]
# convert tape from list to default dict
original_tape = defaultdict(int)
for k, v in enumerate(original_list):
original_tape[k] = v
tape = original_tape.copy()
t, r = process_tape(tape, [1])
output_array = np.array(r["output"], dtype=np.int).reshape(-1, 3)
picture = np.zeros((50, 50), dtype=np.int)
for sequence in output_array:
x, y, symbol = sequence
picture[x][y] = symbol
log.info("Part1 solution: %s", np.sum(picture == 2)) # 341
tape = original_tape.copy()
log.info("Part2 solution: %s", part2(tape)) #