Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    1976 - Number of Ways to Arrive at Destination.

    Medium

    You are in a city that consists of n intersections numbered from 0 to n - 1 with bi-directional roads between some intersections. The inputs are generated such that you can reach any intersection from any other intersection and that there is at most one road between any two intersections.

    You are given an integer n and a 2D integer array roads where <code>roadsi = u<sub>i</sub>, v<sub>i</sub>, time<sub>i</sub></code> means that there is a road between intersections <code>u<sub>i</sub></code> and <code>v<sub>i</sub></code> that takes <code>time<sub>i</sub></code> minutes to travel. You want to know in how many ways you can travel from intersection 0 to intersection n - 1 in the shortest amount of time.

    Return the number of ways you can arrive at your destination in the shortest amount of time. Since the answer may be large, return it modulo <code>10<sup>9</sup> + 7</code>.

    Example 1:

    Input: n = 7, roads = \[\[0,6,7],0,1,2,1,2,3,1,3,3,6,3,3,3,5,1,6,5,1,2,5,1,0,4,5,4,6,2]

    Output: 4

    Explanation: The shortest amount of time it takes to go from intersection 0 to intersection 6 is 7 minutes. The four ways to get there in 7 minutes are:

    • 0 ➝ 6

    • 0 ➝ 4 ➝ 6

    • 0 ➝ 1 ➝ 2 ➝ 5 ➝ 6

    • 0 ➝ 1 ➝ 3 ➝ 5 ➝ 6

    Example 2:

    Input: n = 2, roads = \[\[1,0,10]]

    Output: 1

    Explanation: There is only one way to go from intersection 0 to intersection 1, and it takes 10 minutes.

    Constraints:

    • 1 &lt;= n &lt;= 200

    • n - 1 &lt;= roads.length &lt;= n * (n - 1) / 2

    • roads[i].length == 3

    • <code>0 <= u<sub>i</sub>, v<sub>i</sub><= n - 1</code>

    • <code>1 <= time<sub>i</sub><= 10<sup>9</sup></code>

    • <code>u<sub>i</sub> != v<sub>i</sub></code>

    • There is at most one road connecting any two intersections.

    • You can reach any intersection from any other intersection.

    • 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 countPaths(Integer n, Array<IntArray> roads)
      • Methods inherited from class java.lang.Object

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