-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday02.py
176 lines (134 loc) · 4.7 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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
"""Day 2: Dive."""
from enum import Enum
from typing import Final
from pydantic import BaseModel
from advent_of_code.checks import check_answer, check_example
from advent_of_code.cli_output import print_single_answer
from advent_of_code.data import get_data_path
from advent_of_code.utils import assert_never
DAY: Final[int] = 2
example_sub_course = """
forward 5
down 5
forward 8
up 3
down 8
forward 2
"""
class SubDirection(Enum):
"""Possible directions for a submaine."""
FORWARD = "FORWARD"
DOWN = "DOWN"
UP = "UP"
class CourseInstruction(BaseModel):
"""Course instruction."""
direction: SubDirection
value: int
def __str__(self) -> str:
"""Human-readable reprepresentation of a course instruction."""
return f"{self.direction.value} {self.value}"
def __repr__(self) -> str:
"""Human-readable reprepresentation of a course instruction."""
return str(self)
class Submarine:
"""Submarine."""
hor: int
depth: int
aim: int
def __init__(self) -> None:
"""Create a submarine."""
self.hor = 0
self.depth = 0
self.aim = 0
def incorrect_move(self, by: CourseInstruction) -> None:
"""Move per a submarine course instruction (part 1).
This command is used for Part 1 of the challenge, but Part 2 says this was
"incorrect" and makes it more complicated.
Args:
by (CourseInstruction): Instruction.
"""
if by.direction is SubDirection.FORWARD:
self.hor += by.value
elif by.direction is SubDirection.DOWN:
self.depth += by.value
elif by.direction is SubDirection.UP:
self.depth -= by.value
else:
assert_never(by.direction)
def incorrect_follow_course(self, course: list[CourseInstruction]) -> None:
"""Follow a list of submarine direction instructions (part 1).
This command is used for Part 1 of the challenge, but Part 2 says this was
"incorrect" and makes it more complicated.
Args:
course (list[CourseInstruction]): Instructions.
"""
for instruction in course:
self.incorrect_move(instruction)
return None
def move(self, by: CourseInstruction) -> None:
"""Move per a submarine course instruction.
Args:
by (CourseInstruction): Instruction.
"""
if by.direction is SubDirection.FORWARD:
self.hor += by.value
self.depth += self.aim * by.value
elif by.direction is SubDirection.DOWN:
self.aim += by.value
elif by.direction is SubDirection.UP:
self.aim -= by.value
else:
assert_never(by.direction)
def follow_course(self, course: list[CourseInstruction]) -> None:
"""Follow a list of submarine direction instructions.
Args:
course (list[CourseInstruction]): Instructions.
"""
for instruction in course:
self.move(instruction)
return None
def __str__(self) -> str:
"""Human-readable reprepresentation of a submarine."""
return f"hor: {self.hor}, depth: {self.depth}"
def __repr__(self) -> str:
"""Human-readable reprepresentation of a submarine."""
return str(self)
def _parse_instruction(str_instruction: str) -> CourseInstruction:
direction, value = str_instruction.split(" ")
return CourseInstruction(direction=direction.upper(), value=int(value))
def _parse_instructions(data: str) -> list[CourseInstruction]:
return [_parse_instruction(x) for x in data.strip().splitlines()]
def _read_instructions() -> list[CourseInstruction]:
p = get_data_path(DAY)
with open(p, "r") as file:
instructions = [_parse_instruction(line.strip()) for line in file]
return instructions
def main() -> None:
"""Execute code for day 2."""
# Data.
example_instructions = _parse_instructions(example_sub_course)
course_instructions = _read_instructions()
# Part 1.
# Example.
sub = Submarine()
sub.incorrect_follow_course(example_instructions)
check_example(150, sub.depth * sub.hor)
# Real.
sub = Submarine()
sub.incorrect_follow_course(course_instructions)
res = sub.hor * sub.depth
print_single_answer(DAY, 1, res)
check_answer(1507611, res, day=DAY, part=1)
# Part 2.
# Example.
sub = Submarine()
sub.follow_course(example_instructions)
check_example(900, sub.depth * sub.hor)
# Real.
sub = Submarine()
sub.follow_course(course_instructions)
res = sub.hor * sub.depth
print_single_answer(DAY, 1, res)
check_answer(1880593125, res, day=DAY, part=2)
if __name__ == "__main__":
main()