source: https://leetcode.com/problems/path-with-maximum-probability/description/
Table of Contents
Path with Maximum Probability
Description
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.
Example 1:
Input: n = 3, edges = [[0,1],[1,2],[0,2]], succProb = [0.5,0.5,0.2], start = 0, end = 2
Output: 0.25000
Explanation: There are two paths from start to end, one having a probability of success = 0.2 and the other has 0.5 * 0.5 = 0.25.
Example 2:
Input: n = 3, edges = [[0,1],[1,2],[0,2]], succProb = [0.5,0.5,0.3], start = 0, end = 2
Output: 0.30000
Example 3:
Input: n = 3, edges = [[0,1]], succProb = [0.5], start = 0, end = 2
Output: 0.00000
Explanation: There is no path between 0 and 2.
Constraints:
- 2 <= n <= 10^4
- 0 <= start, end < n
- start != end
- 0 <= a, b < n
- a != b
- 0 <= succProb.length == edges.length <= 2*10^4
- 0 <= succProb[i] <= 1
- There is at most one edge between every two nodes.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
class Solution { public double maxProbability(int n, int[][] edges, double[] succProb, int start, int end) { Map<Integer, List<Pair>> map = new HashMap<>(); for(int i=0;i<n;i++){ map.put(i, new ArrayList<>()); } for(int i=0;i<edges.length;i++){ int[] edge= edges[i]; map.get(edge[0]).add(new Pair(edge[1], succProb[i])); map.get(edge[1]).add(new Pair(edge[0], succProb[i])); } return bfs(map, start, end); } private double bfs(Map<Integer, List<Pair>> map, int start, int end){ Map<Integer, Double> prob = new HashMap<>(); PriorityQueue<Pair> next = new PriorityQueue<Pair>((a, b)-> Double.compare(b.p, a.p)); next.add(new Pair(start, 1d)); Set<Integer> visited = new HashSet<>(); while(!next.isEmpty()){ int size = next.size(); for(int i=0;i<size;i++){ Pair temp = next.poll(); visited.add(temp.val); if(!prob.containsKey(temp.val) || prob.get(temp.val)<temp.p){ prob.put(temp.val, temp.p); } for(Pair node: map.get(temp.val)){ if(!visited.contains(node.val)){ next.add(new Pair(node.val, node.p * temp.p)); } } } } return prob.containsKey(end)?prob.get(end):0; } static class Pair{ int val; double p; public Pair(int val , double p){ this.val = val; this.p = p; } } } |