-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
executable file
·72 lines (52 loc) · 1.17 KB
/
run.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
#! /usr/bin/env python3
def load_data(filename):
with open(filename, 'r') as f:
for line in f:
line = line.rstrip('\n')
t = line.split(' ')
if t[1] in ('AND', 'OR'):
yield t[1], t[4], t[0], t[2]
elif t[1][1:] == 'SHIFT':
yield t[1], t[4], t[0], t[2]
elif t[0] == 'NOT':
yield t[0], t[3], t[1]
elif t[1] == '->':
yield 'LOAD', t[2], t[0]
else:
raise Exception("unexpected")
# Part One
values = {}
def value(a):
if a[0].isdigit():
return int(a)
else:
if a not in values:
values[a] = eval(wires[a])
return values[a]
def op_and(a, b):
return value(a) & value(b)
def op_or(a, b):
return value(a) | value(b)
def op_not(a):
return 0xffff ^ value(a)
def op_load(a):
return value(a)
def op_rshift(a, b):
return 0xffff & (value(a) >> value(b))
def op_lshift(a, b):
return 0xffff & (value(a) << value(b))
wires = {}
for op in load_data('input.txt'):
c, d = op[:2]
args = op[2:]
wires[d] = (globals()[f'op_{c.lower()}'], *args)
def eval(args):
op, *args = args
return op(*args)
value_a = eval(wires['a'])
print(value_a)
# Part Two
values = {}
wires['b'] = (op_load, str(value_a))
value_a = eval(wires['a'])
print(value_a)