Compare commits
4 commits
d5622de4ae
...
8c054af2e7
Author | SHA1 | Date | |
---|---|---|---|
Bruno BELANYI | 8c054af2e7 | ||
Bruno BELANYI | 35a5857ff2 | ||
Bruno BELANYI | 4b7b83758b | ||
Bruno BELANYI | c8c4cd8fcf |
79
2024/d13/ex1/ex1.py
Executable file
79
2024/d13/ex1/ex1.py
Executable file
|
@ -0,0 +1,79 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import dataclasses
|
||||||
|
import sys
|
||||||
|
from typing import NamedTuple
|
||||||
|
|
||||||
|
|
||||||
|
class Point(NamedTuple):
|
||||||
|
x: int
|
||||||
|
y: int
|
||||||
|
|
||||||
|
|
||||||
|
@dataclasses.dataclass
|
||||||
|
class ClawMachine:
|
||||||
|
a_delta: Point
|
||||||
|
b_delta: Point
|
||||||
|
prize: Point
|
||||||
|
|
||||||
|
|
||||||
|
def solve(input: str) -> int:
|
||||||
|
def parse_button(input: str) -> Point:
|
||||||
|
deltas = input.split(": ")[1].strip()
|
||||||
|
x, y = map(lambda delta: int(delta.split("+")[1]), deltas.split(", "))
|
||||||
|
return Point(x, y)
|
||||||
|
|
||||||
|
def parse_prize(input: str) -> Point:
|
||||||
|
coords = input.split(": ")[1].strip()
|
||||||
|
x, y = map(lambda delta: int(delta.split("=")[1]), coords.split(", "))
|
||||||
|
return Point(x, y)
|
||||||
|
|
||||||
|
def parse_claw_machine(input: list[str]) -> ClawMachine:
|
||||||
|
assert len(input) == 3 # Sanity check
|
||||||
|
return ClawMachine(
|
||||||
|
parse_button(input[0]),
|
||||||
|
parse_button(input[1]),
|
||||||
|
parse_prize(input[2]),
|
||||||
|
)
|
||||||
|
|
||||||
|
def parse(input: str) -> list[ClawMachine]:
|
||||||
|
return [parse_claw_machine(group.splitlines()) for group in input.split("\n\n")]
|
||||||
|
|
||||||
|
def play_machine(machine: ClawMachine) -> int | None:
|
||||||
|
def found_prize(row: list[tuple[int, Point]]) -> int | None:
|
||||||
|
for tokens, p in row:
|
||||||
|
if p == machine.prize:
|
||||||
|
return tokens
|
||||||
|
return None
|
||||||
|
|
||||||
|
row = [
|
||||||
|
(3 * i, Point(machine.a_delta.x * i, machine.a_delta.y * i))
|
||||||
|
for i in range(101)
|
||||||
|
]
|
||||||
|
res = found_prize(row)
|
||||||
|
for _ in range(100):
|
||||||
|
row = [
|
||||||
|
(tokens + 1, Point(p.x + machine.b_delta.x, p.y + machine.b_delta.y))
|
||||||
|
for tokens, p in row
|
||||||
|
]
|
||||||
|
tmp = found_prize(row)
|
||||||
|
if tmp is None:
|
||||||
|
continue
|
||||||
|
if res is None:
|
||||||
|
res = tmp
|
||||||
|
res = min(res, tmp)
|
||||||
|
return res
|
||||||
|
|
||||||
|
claw_machines = parse(input)
|
||||||
|
return sum(
|
||||||
|
tokens for tokens in map(play_machine, claw_machines) if tokens is not None
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
input = sys.stdin.read()
|
||||||
|
print(solve(input))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
1279
2024/d13/ex1/input
Normal file
1279
2024/d13/ex1/input
Normal file
File diff suppressed because it is too large
Load diff
69
2024/d13/ex2/ex2.py
Executable file
69
2024/d13/ex2/ex2.py
Executable file
|
@ -0,0 +1,69 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
|
||||||
|
import dataclasses
|
||||||
|
import sys
|
||||||
|
from typing import NamedTuple
|
||||||
|
|
||||||
|
|
||||||
|
class Point(NamedTuple):
|
||||||
|
x: int
|
||||||
|
y: int
|
||||||
|
|
||||||
|
|
||||||
|
@dataclasses.dataclass
|
||||||
|
class ClawMachine:
|
||||||
|
a_delta: Point
|
||||||
|
b_delta: Point
|
||||||
|
prize: Point
|
||||||
|
|
||||||
|
|
||||||
|
def solve(input: str) -> int:
|
||||||
|
def parse_button(input: str) -> Point:
|
||||||
|
deltas = input.split(": ")[1].strip()
|
||||||
|
x, y = map(lambda delta: int(delta.split("+")[1]), deltas.split(", "))
|
||||||
|
return Point(x, y)
|
||||||
|
|
||||||
|
def parse_prize(input: str) -> Point:
|
||||||
|
coords = input.split(": ")[1].strip()
|
||||||
|
x, y = map(lambda delta: int(delta.split("=")[1]), coords.split(", "))
|
||||||
|
return Point(10000000000000 + x, 10000000000000 + y)
|
||||||
|
|
||||||
|
def parse_claw_machine(input: list[str]) -> ClawMachine:
|
||||||
|
assert len(input) == 3 # Sanity check
|
||||||
|
return ClawMachine(
|
||||||
|
parse_button(input[0]),
|
||||||
|
parse_button(input[1]),
|
||||||
|
parse_prize(input[2]),
|
||||||
|
)
|
||||||
|
|
||||||
|
def parse(input: str) -> list[ClawMachine]:
|
||||||
|
return [parse_claw_machine(group.splitlines()) for group in input.split("\n\n")]
|
||||||
|
|
||||||
|
def play_machine(machine: ClawMachine) -> int | None:
|
||||||
|
a_dx, a_dy = machine.a_delta
|
||||||
|
b_dx, b_dy = machine.b_delta
|
||||||
|
px, py = machine.prize
|
||||||
|
|
||||||
|
a = (px * b_dy - py * b_dx) // (b_dy * a_dx - b_dx * a_dy)
|
||||||
|
b = (px * a_dy - py * a_dx) // (a_dy * b_dx - a_dx * b_dy)
|
||||||
|
|
||||||
|
if a * a_dx + b * b_dx != px:
|
||||||
|
return None
|
||||||
|
if a * a_dy + b * b_dy != py:
|
||||||
|
return None
|
||||||
|
|
||||||
|
return 3 * a + b
|
||||||
|
|
||||||
|
claw_machines = parse(input)
|
||||||
|
return sum(
|
||||||
|
tokens for tokens in map(play_machine, claw_machines) if tokens is not None
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> None:
|
||||||
|
input = sys.stdin.read()
|
||||||
|
print(solve(input))
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
main()
|
1279
2024/d13/ex2/input
Normal file
1279
2024/d13/ex2/input
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue