1334. Find the City With the Smallest Number of Neighbors at a Threshold Distance
https://leetcode.com/problems/find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance
Description
There are n cities numbered from 0 to n-1. Given the array edges where edges[i] = [fromi, toi, weighti] represents a bidirectional and weighted edge between cities fromi and toi, and given the integer distanceThreshold.
Return the city with the smallest number of cities that are reachable through some path and whose distance is at most distanceThreshold, If there are multiple such cities, return the city with the greatest number.
Notice that the distance of a path connecting cities i and j is equal to the sum of the edges' weights along that path.
Example 1:

Example 2:

Constraints:
2 <= n <= 1001 <= edges.length <= n * (n - 1) / 2edges[i].length == 30 <= fromi < toi < n1 <= weighti, distanceThreshold <= 10^4All pairs
(fromi, toi)are distinct.
ac1: Floyd-Warshall, O(V^3)
https://leetcode.com/problems/find-the-city-with-the-smallest-number-of-neighbors-at-a-threshold-distance/discuss/491446/JavaC%2B%2B-Floyd-Warshall's-shortest-path-algorithm-Clean-code
ac2: Bellman-Ford, O(VEV)
Shortest Path Faster Algorithm (SPFA) is an improvement of Bellman-Ford:
ac3: Dijkstra, O(VElogV)
Last updated
Was this helpful?