Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    1466 - Reorder Routes to Make All Paths Lead to the City Zero.

    Medium

    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 <code>connectionsi = a<sub>i</sub>, b<sub>i</sub></code> represents a road from city <code>a<sub>i</sub></code> to city <code>b<sub>i</sub></code>.

    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.

    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:

    • <code>2 <= n <= 5 * 10<sup>4</sup></code>

    • connections.length == n - 1

    • connections[i].length == 2

    • <code>0 <= a<sub>i</sub>, b<sub>i</sub><= n - 1</code>

    • <code>a<sub>i</sub> != b<sub>i</sub></code>

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Integer minReorder(Integer n, Array<IntArray> connections)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait