-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20.py
29 lines (29 loc) · 773 Bytes
/
20.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
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)
sum = 0
def explore_head(x, y, n):
global sum
if n == 9:
sum += 1
return
if (x+1,y) in map:
if map[(x+1,y)] == n+1:
explore_head(x+1, y, n+1)
if (x-1,y) in map:
if map[(x-1,y)] == n+1:
explore_head(x-1, y, n+1)
if (x,y+1) in map:
if map[(x,y+1)] == n+1:
explore_head(x, y+1, n+1)
if (x,y-1) in map:
if map[(x,y-1)] == n+1:
explore_head(x, y-1, n+1)
for pos in map:
if map[pos] == 0:
explore_head(pos[0], pos[1], 0)
print(sum)