Reorder Routes to Make All Paths Lead to the City Zero
Learn this problemProblem statement
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] = [ai, bi] represents a road from city ai to city bi.
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 city 0 after reorder.
Function
minReorder(n: int, connections: int[][]) → intExamples
Example 1
n = 6connections = [[0,1],[1,3],[2,3],[4,0],[4,5]]return = 3
Change the direction of edges show in red such that each node can reach the node 0 (capital).
Example 2
n = 5connections = [[1,0],[1,2],[3,2],[3,4]]return = 2
Change the direction of edges show in red such that each node can reach the node 0 (capital).
Example 3
n = 3connections = [[1,0],[2,0]]return = 0
No edges need to be changed, as each node can already reach the node 0.
Constraints
2 <= n <= 5 * 10^4connections.length == n - 1connections[i].length == 20 <= ai, bi <= n - 1ai != bi
More Microsoft problems
- Maximum Pipeline ThroughputOA · Seen Jul 2026
- Maximum Strong Team SubarrayOA · Seen Jul 2026
- Minimum Cost K-Capable ModelsOA · Seen Jul 2026
- Alphabetically Smallest PalindromeOA · Seen Jul 2026
- Maximum Reward PointsOA · Seen Jul 2026
- Maximum Strength of Every NeuronOA · Seen Jul 2026
- Neural Network Subnetwork StrengthOA · Seen Jul 2026
- XOR MultiplicationOA · Seen Jul 2026