-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathday24.py
executable file
·74 lines (53 loc) · 1.64 KB
/
day24.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
#!/usr/bin/env python3
from collections import defaultdict
import sys
DIRMAP = {
'>': ( 0, 1),
'<': ( 0, -1),
'v': ( 1, 0),
'^': (-1, 0),
}
def evolve_blizzard(bliz, width, height):
new = defaultdict(list)
for (r, c), dirs in bliz.items():
for dr, dc in dirs:
new[(r + dr) % height, (c + dc) % width].append((dr, dc))
return new
def neighbors(bliz, r, c, height, width):
if r == 0 and c == 0:
yield -1, 0
elif r == height - 1 and c == width - 1:
yield height, c
for dr, dc in ((0, 1), (1, 0), (0, -1), (-1, 0)):
rr, cc = r + dr, c + dc
if 0 <= rr < height and 0 <= cc < width and (rr, cc) not in bliz:
yield rr, cc
if (r, c) not in bliz:
yield r, c
def advance(bliz, positions, height, width):
for pos in positions:
yield from neighbors(bliz, *pos, height, width)
def bfs(bliz, src, dst, height, width):
positions = {src}
time = 0
while dst not in positions:
time += 1
bliz = evolve_blizzard(bliz, width, height)
positions = set(advance(bliz, positions, height, width))
return time, bliz
# Open the first argument as input or use stdin if no arguments were given
fin = open(sys.argv[1]) if len(sys.argv) > 1 else sys.stdin
grid = fin.read().splitlines()
bliz = defaultdict(list)
for r, row in enumerate(grid[1:-1]):
for c, cell in enumerate(row[1:-1]):
if cell in DIRMAP:
bliz[r, c].append(DIRMAP[cell])
height, width = len(grid) - 2, len(grid[0]) - 2
src, dst = (-1, 0), (height, width - 1)
time, bliz = bfs(bliz, src, dst, height, width)
print('Part 1:', time)
time2, bliz = bfs(bliz, dst, src, height, width)
time3, _ = bfs(bliz, src, dst, height, width)
time += time2 + time3
print('Part 2:', time)