-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
shortest-cycle-in-a-graph.py
39 lines (37 loc) · 1.26 KB
/
shortest-cycle-in-a-graph.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
# Time: O(n^2)
# Space: O(n + e)
# bfs
class Solution(object):
def findShortestCycle(self, n, edges):
"""
:type n: int
:type edges: List[List[int]]
:rtype: int
"""
INF = float("inf")
def bfs(u):
result = INF
dist = [float("inf")]*len(adj)
dist[u] = 0
q = [u]
while q:
new_q = []
for u in q:
for v in adj[u]:
if dist[v] != INF:
assert(abs(dist[v]-dist[u]) <= 1)
if dist[v] != dist[u]-1:
result = min(result, 1+dist[u]+dist[v]) # d = dist[u]+1 >= 2, check if any cycle of length 2*d-1 or 2*d exists
continue
dist[v] = dist[u]+1
new_q.append(v)
if result != INF: # a cycle of length 2*d-1 or 2*d was found, early return
break
q = new_q
return result
adj = [[] for _ in xrange(n)]
for u, v in edges:
adj[u].append(v)
adj[v].append(u)
result = min(bfs(u) for u in xrange(n))
return result if result != INF else -1