-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathday06.py
executable file
·62 lines (43 loc) · 1.31 KB
/
day06.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
#!/usr/bin/env python3
import sys
import heapq
from collections import defaultdict
def count_orbits(planet):
total = 0
while planet in T:
total += 1
planet = T[planet]
return total
def dijkstra(G, src, dst):
queue = [(0, src)]
visited = set()
distance = defaultdict(lambda: float('inf'))
distance[src] = 0
while queue:
dist, planet = heapq.heappop(queue)
if planet == dst:
return dist
if planet not in visited:
visited.add(planet)
for neighbor in filter(lambda p: p not in visited, G[planet]):
new_dist = dist + 1
if new_dist < distance[neighbor]:
distance[neighbor] = new_dist
heapq.heappush(queue, (new_dist, neighbor))
return float('inf')
# 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
orbits = tuple(map(lambda l: l.strip().split(')'), fin.readlines()))
T = {child: parent for parent, child in orbits}
n_orbits = sum(map(count_orbits, T))
print('Part 1:', n_orbits)
G = defaultdict(set)
for a, b in orbits:
G[a].add(b)
G[b].add(a)
min_transfers = dijkstra(G, T['YOU'], T['SAN'])
print('Part 2:', min_transfers)
# Using networkx:
# G = nx.DiGraph(orbits)
# n_orbits = sum(len(nx.descendants(G, n)) for n in G)
# min_transfers = len(nx.shortest_path(G.to_undirected(), 'YOU', 'SAN')) - 3