-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday02.py
79 lines (55 loc) · 1.79 KB
/
day02.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
from functools import partial
from enum import Enum
def process_forward(state, amount):
h, v = state
h += amount
return h, v
def process_up(state, amount):
h, v = state
v -= amount
return h, v
def process_down(state, amount):
h, v = state
v += amount
return h, v
class InputEnum(Enum):
forward = partial(process_forward)
up = partial(process_up)
down = partial(process_down)
def __call__(self, *args):
return self.value(*args)
def process_forward2(state, amount):
h, v, aim = state
h += amount
v += amount * aim
return h, v, aim
def process_up2(state, amount):
h, v, aim = state
aim -= amount
return h, v, aim
def process_down2(state, amount):
h, v, aim = state
aim += amount
return h, v, aim
class InputEnum2(Enum):
forward = partial(process_forward2)
up = partial(process_up2)
down = partial(process_down2)
def __call__(self, *args):
return self.value(*args)
if __name__ == '__main__':
input_file = open('input/day02.txt', 'r')
h_state, v_state = 0, 0
input_lines = [line.split(' ') for line in input_file.readlines()]
for command, amount in input_lines:
h_state, v_state = InputEnum[command]((h_state, v_state), int(amount))
print("Horizontal state: {}".format(h_state))
print("Vertical state: {}".format(v_state))
print("Multiplied state: {}".format(h_state * v_state))
h_state, v_state, aim_state = 0, 0, 0
for command, amount in input_lines:
h_state, v_state, aim_state = InputEnum2[command]((h_state, v_state, aim_state), int(amount))
print("Part 2 ------------")
print("Horizontal state: {}".format(h_state))
print("Vertical state: {}".format(v_state))
print("Multiplied state: {}".format(h_state * v_state))