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.
Be the first one to answer
Add answer anonymously...
Lido Learning Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter