-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday12.py
43 lines (33 loc) · 1.18 KB
/
day12.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
from utils import read_data_file
def count_paths(cur_path, nodes, lower_nodes, twice=False):
if cur_path[-1] == 'end':
return 1
res = 0
for adjacent in nodes[cur_path[-1]]:
if adjacent not in cur_path or adjacent not in lower_nodes:
res += count_paths(cur_path+[adjacent], nodes, lower_nodes, twice)
elif twice:
res += count_paths(cur_path+[adjacent], nodes, lower_nodes, False)
return res
lines = read_data_file(12, False)
nodes = {'start':[]}
lower_nodes = ['start']
for line in lines:
cur_nodes = line.strip().split('-')
if 'start' == cur_nodes[0]:
nodes['start'].append(cur_nodes[1])
elif 'start' == cur_nodes[1]:
nodes['start'].append(cur_nodes[0])
else:
for i in [0,1]:
cur_node = cur_nodes[i]
if cur_node in nodes:
nodes[cur_node].append(cur_nodes[1-i])
else:
nodes[cur_node] = [cur_nodes[1-i]]
if cur_node.islower():
lower_nodes.append(cur_node)
res = count_paths(['start'], nodes, lower_nodes)
print(res)
res = count_paths(['start'], nodes, lower_nodes, True)
print(res)