summaryrefslogtreecommitdiffstats
path: root/21.py
blob: a2c03651ee3d3ca51fac3f8f2e8dfc3423d45026 (plain)
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
from functools import cache
from utils import open_day

monkeys = {}
with open_day(21) as f:
    for line in f:
        target, expr = line.rstrip().split(': ')
        expr = expr.split(' ')
        if len(expr) == 1:
            expr = int(expr[0])
        monkeys[target] = expr

ops = {
    '+': lambda a, b: a + b,
    '-': lambda a, b: a - b,
    '*': lambda a, b: a * b,
    '/': lambda a, b: a // b,
}

@cache
def eval_monkey(m):
    expr = monkeys[m]
    if isinstance(expr, int):
        return expr
    return ops[expr[1]](eval_monkey(expr[0]), eval_monkey(expr[2]))

print(eval_monkey('root'))

with open('21.z3', 'w') as f:
    f.write(''.join(f'(declare-const {monkey} Int)\n' for monkey in monkeys.keys()))
    for k, v in monkeys.items():
        if k == 'humn': continue
        if k == 'root':
            print(f'(assert (= {v[0]} {v[2]}))', file=f)
            continue
        if isinstance(v, int):
            print(f'(assert (= {k} {v}))', file=f)
        else:
            print(f'(assert (= {k} ({v[1]} {v[0]} {v[2]})))', file=f)
    print('(check-sat)\n(get-model)', file=f)