-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5426_reorder_routes.py
68 lines (57 loc) · 2.43 KB
/
5426_reorder_routes.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
64
65
66
67
'''
There are n cities numbered from 0 to n-1 and n-1 roads such that there is only one way to travel between two different cities (this network form a tree). Last year, The ministry of transport decided to orient the roads in one direction because they are too narrow.
Roads are represented by connections where connections[i] = [a, b] represents a road from city a to b.
This year, there will be a big event in the capital (city 0), and many people want to travel to this city.
Your task consists of reorienting some roads such that each city can visit the city 0. Return the minimum number of edges changed.
It's guaranteed that each city can reach the city 0 after reorder.
Example 1:
Input: n = 6, connections = [[0,1],[1,3],[2,3],[4,0],[4,5]]
Output: 3
Explanation: Change the direction of edges show in red such that each node can reach the node 0 (capital).
Example 2:
Input: n = 5, connections = [[1,0],[1,2],[3,2],[3,4]]
Output: 2
Explanation: Change the direction of edges show in red such that each node can reach the node 0 (capital).
Example 3:
Input: n = 3, connections = [[1,0],[2,0]]
Output: 0
Constraints:
2 <= n <= 5 * 10^4
connections.length == n-1
connections[i].length == 2
0 <= connections[i][0], connections[i][1] <= n-1
connections[i][0] != connections[i][1]
'''
from collections import defaultdict
class Solution:
def minReorder(self, n: int, connections) -> int:
outgoing_routes = defaultdict(set)
incoming_routes = defaultdict(set)
for (f, t) in connections:
outgoing_routes[f].add(t)
incoming_routes[t].add(f)
# print(outgoing_routes)
# print(incoming_routes)
res = 0
covered_cities = {0}
cities_to_lookat = [0]
while len(cities_to_lookat) > 0:
c = cities_to_lookat.pop()
for next_city in incoming_routes[c]:
if next_city not in covered_cities:
cities_to_lookat.append(next_city)
covered_cities.add(next_city)
for next_city in outgoing_routes[c]:
if next_city not in covered_cities:
cities_to_lookat.append(next_city)
covered_cities.add(next_city)
res += 1
assert len(covered_cities) == n
return res
s = Solution()
# n = 6
# connections = [[0,1],[1,3],[2,3],[4,0],[4,5]]
n = 5
connections = [[1,0],[1,2],[3,2],[3,4]]
res = s.minReorder(n, connections)
print(res)