Update appNew update is available. Click here to update.

Path With Maximum Probability

Last Updated: 26 Mar, 2021
Difficulty: Moderate

PROBLEM STATEMENT

Try Problem

You are given an undirected unweighted graph and an array 'sProability' which denotes the probability of traversing edges such that 'sProability[i]' denotes the probability of traversing ith edge. You are given the start and end vertex, You need to determine the maximum path probability on going from start to end vertex if there is no path from start to end return 0.

Input Format
The first line of input contains an integer 'T', the number 
of test cases.

The first line of the test case contains four integers ‘N’, 
‘M’, 'START', 'END' denoting the number of vertices, edges, starting vertex, and ending vertex.

The next ‘M’ lines describe the edge. Each edge is 
characterized by two integers ‘A’ and ‘B’ where ‘A’ and ‘B’ denotes the endpoints of the edge.

The last line of each test case contains ‘M’ space-separated floating-point number denoting the probability of traversing ith edge.

The edges[i][0], edges[i][1] contains the vertex that is 
connected to the edge.
Output Format
Return the maximum probability of path from start to end vertex up to 6 decimal places. If there is no path, return 0.
Note:
Graph does not contain self-loops.
Constraints
1 <= T <= 10
1 <= N <= 5 * 10 ^ 4
1 <= M <= min((N * (N - 1) / 2),10^5)
0 <= VERTEX VALUE, START, END <= N - 1
0 <= sProability[i] <= 1

Time Limit: 1 second