-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvent2017_8.py
78 lines (69 loc) · 2 KB
/
advent2017_8.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
#!/usr/bin/env python3
# http://adventofcode.com/2017
import math
from itertools import cycle, dropwhile, permutations
from functools import lru_cache
from collections import Counter
from pprint import pprint
import copy
from anytree import Node, RenderTree, LevelOrderGroupIter, PreOrderIter, PostOrderIter
import csv
import logging as log
import os
LOGLEVEL = os.environ.get("LOGLEVEL", "WARNING").upper()
log.basicConfig(level=LOGLEVEL)
def condition(r, a, n, registers):
if a == ">":
return registers[r] > n
elif a == "<":
return registers[r] < n
elif a == "==":
return registers[r] == n
elif a == "!=":
return registers[r] != n
elif a == ">=":
return registers[r] >= n
elif a == "<=":
return registers[r] <= n
def action(r, a, n, registers):
if a == "inc":
registers[r] += n
else:
registers[r] -= n
return registers
if __name__ == "__main__":
node_list = []
registers = dict()
all_time_max = 0
with open("input_advent2017_8.txt") as file:
# with open('temp') as file:
reader = csv.DictReader(
file,
delimiter=" ",
fieldnames=[
"register",
"action",
"number",
"if",
"cond_register",
"cond_action",
"cond_number",
],
)
for row in reader:
registers[row["register"]] = 0
file.seek(0)
for row in reader:
if condition(
row["cond_register"],
row["cond_action"],
int(row["cond_number"]),
registers,
):
registers = action(
row["register"], row["action"], int(row["number"]), registers
)
if all_time_max < max(registers.values()):
all_time_max = max(registers.values())
print(max(registers.values()), all_time_max)
# print(node_list)