-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path1129.Shortest-Path-with-Alternating-Colors.py
63 lines (51 loc) · 1.65 KB
/
1129.Shortest-Path-with-Alternating-Colors.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
63
# https://leetcode.com/problems/shortest-path-with-alternating-colors/
# Medium (35.02%)
# Total Accepted: 2,973
# Total Submissions: 8,484
from collections import deque
class Solution(object):
def shortestAlternatingPaths(self, n, red_edges, blue_edges):
"""
:type n: int
:type red_edges: List[List[int]]
:type blue_edges: List[List[int]]
:rtype: List[int]
"""
red = [[] for _ in xrange(n)]
blue = [[] for _ in xrange(n)]
res = [float('inf')] * n
res[0] = 0
for source, target in red_edges:
red[source] += target,
for source, target in blue_edges:
blue[source] += target,
def bfs(is_red):
q = deque([0, -1])
path = 0
is_visited = {
(0, True): True,
(0, False): True,
}
while True:
cur = q.popleft()
if cur == -1:
if not q:
break
path += 1
q.append(-1)
is_red = not is_red
else:
res[cur] = min(res[cur], path)
arr = red[cur] if is_red else blue[cur]
# is_red = not is_red
for i in arr:
if (i, is_red) in is_visited:
continue
is_visited[(i, is_red)] = True
q.append(i)
bfs(True)
bfs(False)
for i in xrange(n):
if res[i] == float('inf'):
res[i] = -1
return res