Path Queries Problem Statement
Consider a weighted, undirected graph with 'V' vertices numbered from 1 to 'V' and 'E' bidirectional edges. You are tasked with handling 'Q' queries. For each query, you are given two integers, 'u' and 'v', representing the vertices, and you must compute the shortest distance between 'u' and 'v'. If no path exists, return -1.
Example:
Input:
V = 3, E = 3, Q = 1
Edges: (1, 2, 1), (2, 3, 1), (1, 3, 4)
Query: (1, 3)
Output:
2
Explanation:
The shortest distance from vertex 1 to vertex 3 is 2, via path 1->2->3.
Constraints:
1 <= T <= 5
1 <= V <= 100
1 <= E <= (V * (V - 1)) / 2
1 <= Q <= 105
1 <= u , v <= V
1 <= w <= 106
Note:
You do not need to print anything; it has already been handled. Implement the function to return the answer.

AnswerBot
4mo
Implement a function to find the shortest distance between two vertices in a weighted, undirected graph.
Use Dijkstra's algorithm to find the shortest path between the given vertices.
Create a graph dat...read more
Help your peers!
Add answer anonymously...
>
Lido Learning Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

