Path with Maximum Probability - Problem
You are given an undirected weighted graph of n nodes (0-indexed), represented by an edge list where edges[i] = [a, b] is an undirected edge connecting the nodes a and b with a probability of success of traversing that edge succProb[i].
Given two nodes start and end, find the path with the maximum probability of success to go from start to end and return its success probability.
If there is no path from start to end, return 0. Your answer will be accepted if it differs from the correct answer by at most 1e-5.
Input & Output
Example 1 — Basic Graph
$
Input:
n = 3, edges = [[0,1],[1,2],[0,2]], succProb = [0.5,0.5,0.2], start = 0, end = 2
›
Output:
0.25000
💡 Note:
Two paths exist: 0→2 (probability 0.2) and 0→1→2 (probability 0.5×0.5=0.25). Maximum is 0.25.
Example 2 — No Direct Path
$
Input:
n = 3, edges = [[0,1],[1,2],[0,2]], succProb = [0.5,0.5,0.3], start = 0, end = 2
›
Output:
0.30000
💡 Note:
Two paths: 0→2 (probability 0.3) and 0→1→2 (probability 0.5×0.5=0.25). Maximum is 0.3.
Example 3 — No Path Available
$
Input:
n = 4, edges = [[0,1],[2,3]], succProb = [0.5,0.5], start = 0, end = 3
›
Output:
0.00000
💡 Note:
Nodes 0 and 3 are in different connected components, so no path exists.
Constraints
- 2 ≤ n ≤ 104
- 0 ≤ start, end < n
- start ≠ end
- 0 ≤ edges.length ≤ 2 * 104
- edges[i].length == 2
- 0 ≤ ai, bi < n
- ai ≠ bi
- 0 < succProb[i] ≤ 1
Visualization
Tap to expand
Understanding the Visualization
1
Graph Input
Undirected graph with edge success probabilities
2
Path Search
Find path that maximizes probability product
3
Result
Return maximum probability or 0 if no path exists
Key Takeaway
🎯 Key Insight: Use Dijkstra's algorithm but maximize probability instead of minimizing distance
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code