Path to Maximize Probability to Destination - Google Top Interview Questions


Problem Statement :


You are given a two-dimensional list of integers edges, a list of floats success, and integers start and end. edges represents an undirected, weighted graph. 

Each edges[i] contains [u, v] meaning u and v is connected, and the chance of successfully traversing the edge is success[i] chance.

Given that you start at node start and you want to arrive at node end, return the highest overall chance you can get by taking any path. If there's no path to end, return 0.

Constraints

1 ≤ n ≤ 100,000 where n is the length of edges and success

0 ≤ success[i] ≤ 1

Example 1

Input

edges = [

    [0, 1],

    [1, 2],

    [2, 3]

]

success = [0.2, 0.2, 0.5]

start = 0

end = 3

Output

0.02

Explanation

The probability of being able to go from 0 to 3 is 0.2 * 0.2 * 0.5.



Solution :



title-img




                        Solution in C++ :

double solve(vector<vector<int>>& edges, vector<double>& success, int start, int end) {
    unordered_map<int, vector<pair<int, double>>> adj;
    for (int i = 0; i < edges.size(); ++i) {
        int u = edges[i][0], v = edges[i][1];
        double w = success[i];
        adj[u].emplace_back(v, w);
        adj[v].emplace_back(u, w);
    }
    unordered_map<int, double> dist;
    dist[start] = 1;
    priority_queue<pair<double, int>> pq;
    pq.emplace(1, start);
    while (!pq.empty()) {
        auto [cw, u] = pq.top();
        pq.pop();
        if (cw < dist[u]) continue;
        for (auto [v, w] : adj[u]) {
            if (cw * w > dist[v]) {
                dist[v] = cw * w;
                pq.emplace(dist[v], v);
            }
        }
    }
    return dist[end];
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    class State {
        int node;
        double prob;
        State(int _node, double _prob) {
            node = _node;
            prob = _prob;
        }
    }

    public double solve(int[][] edges, double[] success, int start, int end) {
        Map<Integer, List<State>> map = new HashMap<>();
        Map<Integer, Double> bestProb = new HashMap<>();
        for (int i = 0; i < edges.length; ++i) {
            // Add u, v to graphMap. Add v to u's list of neighbors & vice versa
            int[] edge = edges[i];

            map.putIfAbsent(edge[0], new ArrayList<>());
            map.putIfAbsent(edge[1], new ArrayList<>());

            map.get(edge[0]).add(new State(edge[1], success[i]));
            map.get(edge[1]).add(new State(edge[0], success[i]));

            // Set best prob. of each node to 0
            bestProb.putIfAbsent(edge[0], 0.0);
            bestProb.putIfAbsent(edge[1], 0.0);
        }

        // Use PriorityQueue that sorts by max probability, add Start node with 100% probability
        Comparator<State> nodeSort = (a, b) -> (((Double) b.prob).compareTo((Double) a.prob));
        PriorityQueue<State> pq = new PriorityQueue<>(nodeSort);
        pq.add(new State(start, 1.0));

        // Begin Dijkstra's
        while (!pq.isEmpty()) {
            // Remove node from PQ
            State state = pq.poll();
            int parent = state.node;
            double prob = state.prob;

            // Reached goal!
            if (parent == end)
                return prob;

            // Explore neighbors
            for (State child : map.getOrDefault(parent, new ArrayList<>())) {
                // Get child's value, prob to visit it, & bestProb
                int childVal = child.node;
                double childProb = child.prob;
                double bestChildProb = bestProb.get(childVal);

                // Add to pq only if it can make a better prob
                if (bestChildProb < prob * childProb) {
                    pq.add(new State(childVal, prob * childProb));
                    bestProb.put(childVal, prob * childProb);
                }
            }
        }

        return 0;
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, edges, success, start, end):
        adj = {}
        distances = {}
        for i, edge in enumerate(edges):
            a, b = edge
            adj[a] = adj.get(a, {})
            adj[b] = adj.get(b, {})
            adj[a][b] = success[i]
            adj[b][a] = success[i]
            distances[a] = 0
            distances[b] = 0

        distances[start] = 1
        heap = [(-1, start)]
        visited = set()

        while heap:
            prob, i = heapq.heappop(heap)
            prob = -prob
            if i in visited:
                continue
            visited.add(i)

            if i == end:
                return prob

            for key, val in adj[i].items():
                if prob * val > distances[key]:
                    distances[key] = prob * val
                    heapq.heappush(heap, (-distances[key], key))

        return 0
                    


View More Similar Problems

Binary Search Tree : Lowest Common Ancestor

You are given pointer to the root of the binary search tree and two values v1 and v2. You need to return the lowest common ancestor (LCA) of v1 and v2 in the binary search tree. In the diagram above, the lowest common ancestor of the nodes 4 and 6 is the node 3. Node 3 is the lowest node which has nodes and as descendants. Function Description Complete the function lca in the editor b

View Solution →

Swap Nodes [Algo]

A binary tree is a tree which is characterized by one of the following properties: It can be empty (null). It contains a root node only. It contains a root node with a left subtree, a right subtree, or both. These subtrees are also binary trees. In-order traversal is performed as Traverse the left subtree. Visit root. Traverse the right subtree. For this in-order traversal, start from

View Solution →

Kitty's Calculations on a Tree

Kitty has a tree, T , consisting of n nodes where each node is uniquely labeled from 1 to n . Her friend Alex gave her q sets, where each set contains k distinct nodes. Kitty needs to calculate the following expression on each set: where: { u ,v } denotes an unordered pair of nodes belonging to the set. dist(u , v) denotes the number of edges on the unique (shortest) path between nodes a

View Solution →

Is This a Binary Search Tree?

For the purposes of this challenge, we define a binary tree to be a binary search tree with the following ordering requirements: The data value of every node in a node's left subtree is less than the data value of that node. The data value of every node in a node's right subtree is greater than the data value of that node. Given the root node of a binary tree, can you determine if it's also a

View Solution →

Square-Ten Tree

The square-ten tree decomposition of an array is defined as follows: The lowest () level of the square-ten tree consists of single array elements in their natural order. The level (starting from ) of the square-ten tree consists of subsequent array subsegments of length in their natural order. Thus, the level contains subsegments of length , the level contains subsegments of length , the

View Solution →

Balanced Forest

Greg has a tree of nodes containing integer data. He wants to insert a node with some non-zero integer value somewhere into the tree. His goal is to be able to cut two edges and have the values of each of the three new trees sum to the same amount. This is called a balanced forest. Being frugal, the data value he inserts should be minimal. Determine the minimal amount that a new node can have to a

View Solution →