-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19.py
32 lines (32 loc) · 909 Bytes
/
19.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
from collections import defaultdict
f = open("19.in")
map = {}
for y, line in enumerate(f.readlines()):
for x, tile in enumerate(line):
if tile != "\n" and tile != ".":
map[(x,y)] = int(tile)
reaches = defaultdict(set)
def explore_head(x, y, n, og):
global reaches
if n == 9:
reaches[og].add((x,y))
return
if (x+1,y) in map:
if map[(x+1,y)] == n+1:
explore_head(x+1, y, n+1, og)
if (x-1,y) in map:
if map[(x-1,y)] == n+1:
explore_head(x-1, y, n+1, og)
if (x,y+1) in map:
if map[(x,y+1)] == n+1:
explore_head(x, y+1, n+1, og)
if (x,y-1) in map:
if map[(x,y-1)] == n+1:
explore_head(x, y-1, n+1, og)
for pos in map:
if map[pos] == 0:
explore_head(pos[0], pos[1], 0, (pos[0], pos[1]))
sum = 0
for reach in reaches:
sum += len(reaches[reach])
print(sum)