28. City With the Smallest Number of Neighbors at a Threshold Distance
The problem can be found at the following link: Question Link
My Approach
We solve this problem using Dijkstra's algorithm.
We iterate over each city and find the count of cities that are reachable within the given threshold distance from that city using Dijkstra's algorithm.
We keep track of the city with the smallest count of reachable cities and return it as the output.
Time and Auxiliary Space Complexity
Time Complexity:
O((N + M)logN)
, where N is the number of cities and M is the number of edges.Auxiliary Space Complexity:
O(N + M)
, where N is the number of cities and M is the number of edges.
Code (C++)
Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star
to the getlost01/gfg-potd repository.
Last updated