forked from kyle8998/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortest-path-visiting-all-nodes.py
57 lines (52 loc) · 1.52 KB
/
shortest-path-visiting-all-nodes.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
# Time: O(n * 2^n)
# Space: O(n * 2^n)
# An undirected, connected graph of N nodes (labeled 0, 1, 2, ..., N-1)
# is given as graph.
#
# graph.length = N, and j != i is in the list graph[i] exactly once,
# if and only if nodes i and j are connected.
#
# Return the length of the shortest path that visits every node.
# You may start and stop at any node, you may revisit nodes multiple times,
# and you may reuse edges.
#
# Example 1:
#
# Input: [[1,2,3],[0],[0],[0]]
# Output: 4
# Explanation: One possible path is [1,0,2,0,3]
# Example 2:
#
# Input: [[1],[0,2,4],[1,3,4],[2],[1,2]]
# Output: 4
# Explanation: One possible path is [0,1,4,2,3]
#
# Note:
# - 1 <= graph.length <= 12
# - 0 <= graph[i].length < graph.length
import collections
try:
xrange # Python 2
except NameError:
xrange = range # Python 3
class Solution(object):
def shortestPathLength(self, graph):
"""
:type graph: List[List[int]]
:rtype: int
"""
dp = [[float("inf")]*(len(graph))
for _ in xrange(1 << len(graph))]
q = collections.deque()
for i in xrange(len(graph)):
dp[1 << i][i] = 0
q.append((1 << i, i))
while q:
state, node = q.popleft()
steps = dp[state][node]
for nei in graph[node]:
new_state = state | (1 << nei)
if dp[new_state][nei] == float("inf"):
dp[new_state][nei] = steps+1
q.append((new_state, nei))
return min(dp[-1])