Class Solution
-
- All Implemented Interfaces:
public final class Solution2492 - Minimum Score of a Path Between Two Cities\.
Medium
You are given a positive integer
nrepresentingncities numbered from1ton. You are also given a 2D arrayroadswhere <code>roadsi = a<sub>i</sub>, b<sub>i</sub>, distance<sub>i</sub></code> indicates that there is a bidirectional road between cities <code>a<sub>i</sub></code> and <code>b<sub>i</sub></code> with a distance equal to <code>distance<sub>i</sub></code>. The cities graph is not necessarily connected.The score of a path between two cities is defined as the minimum distance of a road in this path.
Return the minimum possible score of a path between cities
1andn.Note:
A path is a sequence of roads between two cities.
It is allowed for a path to contain the same road multiple times, and you can visit cities
1andnmultiple times along the path.The test cases are generated such that there is at least one path between
1andn.
Example 1:
Input: n = 4, roads = \[\[1,2,9],2,3,6,2,4,5,1,4,7]
Output: 5
Explanation: The path from city 1 to 4 with the minimum score is: 1 -> 2 -> 4. The score of this path is min(9,5) = 5. It can be shown that no other path has less score.
Example 2:
Input: n = 4, roads = \[\[1,2,2],1,3,4,3,4,7]
Output: 2
Explanation: The path from city 1 to 4 with the minimum score is: 1 -> 2 -> 1 -> 3 -> 4. The score of this path is min(2,2,4,7) = 2.
Constraints:
<code>2 <= n <= 10<sup>5</sup></code>
<code>1 <= roads.length <= 10<sup>5</sup></code>
roads[i].length == 3<code>1 <= a<sub>i</sub>, b<sub>i</sub><= n</code>
<code>a<sub>i</sub> != b<sub>i</sub></code>
<code>1 <= distance<sub>i</sub><= 10<sup>4</sup></code>
There are no repeated edges.
There is at least one path between
1andn.
-
-
Constructor Summary
Constructors Constructor Description Solution()
-