Problem Details
Find the City With the Smallest Number of Neighbors at a Threshold Distance
1. If multiple such cities exist, you have to find the city with the greatest number.
2. The distance of a path connecting two cities, ‘U’ and ‘V’, is the sum of the weight of the edges along that path.
3. The distance between two cities is the minimum of all possible path distances.
The first line contains an integer ‘T’, which denotes the number of test cases to be run. Then, the T test cases follow.
The first line of each test case contains three positive integers, ‘N’, ‘M’, and ‘distanceThreshold’, as described in the problem statement.
The next ‘M’ lines of each test case contain three integers, ‘U’, ‘V’, and ‘W’ each, representing each edge of the graph.
The edge U V W represents an edge between vertices ‘U’ and ‘V’, having weight ‘W’.
The ‘edges’ will be passed to the function as an array of arrays. Each array will contain three integers, ‘U’, ‘V’, and ‘W’ in that order.
For each test case, print a single line containing a single integer denoting the required ‘city’ number, as described in the problem statement.
The output for each test case will be printed in a separate line.
You do not need to print anything. It has already been taken care of. Just implement the given function.
1 <= T <= 10
2 <= N <= 100
1 <= M <= (N * (N - 1)) / 2
0 <= U, V < N
1 <= W, distanceThreshold <= 100
Where ‘T’ denotes the number of test cases, ‘N’ represents the number of cities, and ‘M’ denotes the number of edges.
‘U’, ‘V’, and ‘W’ denote the edge between city ‘U’ and ‘W’ having weight ‘W’.
Time limit: 1 sec.
The idea here is to use Dijkstra’s algorithm to compute the distance between cities as the edge weights are non-negative. This algorithm fixed one node and treated it as a source and compute the distance of other nodes to the source. First, we need to make the adjacency list for the graph which contains for each city the city to which it is connected, and the edge weight of that edge. Now, we have to run Dijkstra’s algorithm for each city to find the distance of all other cities to it. Please read more about Dijkstra’s algorithm from Wikipedia.
Now, for each city, we have to calculate the reachable cities within the threshold. We can use the vector of pairs for the same, where the 1st element denotes the number of reachable cities to a particular city and the 2nd element represents the number of that city (that is used to break the tie). Sort the vector of pairs in a way that the 1st element of the vector will contain the desired output, and the second of the 1st element is the required city number.
The idea here is to compute the distance between all pairs of cities. We can use Floyd - Warshell’s algorithm for the same. We first create a matrix named distance that will contain the distance between any two cities. Initialize the distance matrix with the edge weight which we have been provided directly. We then update the distance matrix by considering all the intermediate vertices. Please read more about Floyd-Warshell’s algorithm from Wikipedia.
Now, for each city, we have to calculate the reachable cities within the threshold. We can use the vector of pairs for the same, where 1st element denotes the number of reachable cities to a particular city and 2nd element represents the number of that city (that is used to break the tie). Sort the vector of pairs in a way that the 1st element of the vector will contain the desired output, and the second of the 1st element is the required city number.
NINJA AND HAPPINESS
DECODE STRING
COUNT ISLANDS
Distance to a Cycle in Undirected Graph
Randomly Sorted