Unique Paths to Go Home - Google Top Interview Questions


Problem Statement :


You are given a two-dimensional list of integers edges where each element contains [u, v, distance] representing a weighted undirected graph. You are currently at node 0 and your home is the largest node. You can go from u to v if it's immediately connected and the shortest distance from u to home is larger than the shortest distance from v to home.

Return the number of unique paths possible to go from node 0 to home. Mod the result by 10 ** 9 + 7.

Constraints

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

0 ≤ distance

Example 1

Input

edges = [

    [0, 1, 1],

    [1, 2, 1],

    [2, 3, 1],

    [1, 3, 2]

]

Output

2

Explanation

There are two unique paths to go home:



We can go 0 to 1 then 1 to 2 then 2 to 3

We can go 0 to 1 then 1 to 3

Example 2

Input

edges = [

    [0, 1, 1],

    [0, 2, 1],

    [1, 2, 2]

]

Output

1

Explanation

There is one unique path to go home: go 0 to 2



We can't go through 0 -> 1 -> 2 because the shortest distance from 0 to 2 is smaller than 1 to 2



Solution :



title-img




                        Solution in C++ :

long long dp[100005];
long long dist[100005];
int n;
vector<pair<int, int>> edges[100005];
int solve(vector<vector<int>>& graph) {
    // begin graph initialization
    n = 0;
    for (auto& edge : graph) {
        n = max(n, edge[0]);
        n = max(n, edge[1]);
    }
    n++;
    for (int i = 0; i < n; i++) edges[i].clear();
    for (auto& edge : graph) {
        edges[edge[0]].emplace_back(edge[1], edge[2]);
        edges[edge[1]].emplace_back(edge[0], edge[2]);
    }
    // end graph initialization

    // begin dijkstra
    for (int i = 0; i < n; i++) dist[i] = 1e18;
    dist[n - 1] = 0;
    priority_queue<pair<long long, long long>> q;
    q.emplace(0, n - 1);
    vector<int> orderv;
    while (q.size()) {
        auto [w, v] = q.top();
        q.pop();
        w *= -1;
        if (dist[v] != w) continue;
        orderv.push_back(v);
        for (auto edge : edges[v]) {
            if (dist[edge.first] > dist[v] + edge.second) {
                dist[edge.first] = dist[v] + edge.second;
                q.emplace(-dist[edge.first], edge.first);
            }
        }
    }
    // end dijkstra

    // begin path counting
    for (int i = 0; i < n; i++) dp[i] = 0;
    dp[n - 1] = 1;
    const int MOD = 1000000007;
    for (int currv : orderv) {
        for (auto& edge : edges[currv]) {
            if (dist[edge.first] < dist[currv]) {
                dp[currv] += dp[edge.first];
                dp[currv] %= MOD;
            }
        }
    }
    // end path counting
    return dp[0];
}
                    


                        Solution in Java :

import java.util.*;

class Solution {
    public int solve(int[][] edges) {
        int N = 0;
        for (int[] edge : edges) N = Math.max(N, Math.max(edge[0], edge[1]));
        N++;
        ArrayList<State>[] graph = new ArrayList[N];
        for (int i = 0; i < N; i++) graph[i] = new ArrayList<State>();
        for (int[] e : edges) {
            long w = (long) e[2];
            graph[e[0]].add(new State(e[1], w));
            graph[e[1]].add(new State(e[0], w));
        }

        // Dijkstra's Algorithm
        long[] distances = new long[N];
        Arrays.fill(distances, Long.MAX_VALUE);
        distances[N - 1] = 0L;
        PriorityQueue<State> pq = new PriorityQueue<State>();
        State s = new State(N - 1, 0L);
        pq.add(s);
        while (!pq.isEmpty()) {
            s = pq.poll();
            for (State e : graph[s.node]) {
                if (distances[e.node] > distances[s.node] + e.dist) {
                    distances[e.node] = distances[s.node] + e.dist;
                    pq.add(new State(e.node, distances[e.node]));
                }
            }
        }
        State[] vals = new State[N];
        for (int i = 0; i < N; i++) vals[i] = new State(i, distances[i]);
        Arrays.sort(vals);

        long[] ans = new long[N];
        ans[N - 1] = 1L;
        for (int i = 1; i < N; i++) {
            int u = vals[i].node;
            for (State e : graph[u]) {
                int v = e.node;
                if (distances[u] > distances[v])
                    ans[u] = (ans[u] + ans[v]) % 1000000007;
            }
        }
        return (int) ans[0];
    }

    static class State implements Comparable<State> {
        int node;
        long dist;
        public State(int n, long d) {
            node = n;
            dist = d;
        }

        public int compareTo(State s) {
            return Long.compare(dist, s.dist);
        }
    }
}
                    


                        Solution in Python : 
                            
class Solution:
    def solve(self, edges):
        MOD = 10 ** 9 + 7

        graph = defaultdict(dict)
        for u, v, w in edges:
            graph[u][v] = graph[v][u] = w

        # Find distance from home to nodes with Dijkstra
        home = max(graph)
        dist = defaultdict(lambda: float("inf"))
        dist[home] = 0
        pq = [[0, home]]
        while pq:
            d, node = heappop(pq)
            if dist[node] < d:
                continue

            for nei, w in graph[node].items():
                if d + w < dist[nei]:
                    heappush(pq, [d + w, nei])
                    dist[nei] = d + w

        # DP on topological order
        nodes = sorted(graph, key=dist.__getitem__)
        dp = defaultdict(int)
        dp[home] = 1
        for u in nodes:
            for v in graph[u]:
                if dist[v] > dist[u]:
                    dp[v] += dp[u]
                    dp[v] %= MOD

        return dp[0]
                    


View More Similar Problems

Counting On a Tree

Taylor loves trees, and this new challenge has him stumped! Consider a tree, t, consisting of n nodes. Each node is numbered from 1 to n, and each node i has an integer, ci, attached to it. A query on tree t takes the form w x y z. To process a query, you must print the count of ordered pairs of integers ( i , j ) such that the following four conditions are all satisfied: the path from n

View Solution →

Polynomial Division

Consider a sequence, c0, c1, . . . , cn-1 , and a polynomial of degree 1 defined as Q(x ) = a * x + b. You must perform q queries on the sequence, where each query is one of the following two types: 1 i x: Replace ci with x. 2 l r: Consider the polynomial and determine whether is divisible by over the field , where . In other words, check if there exists a polynomial with integer coefficie

View Solution →

Costly Intervals

Given an array, your goal is to find, for each element, the largest subarray containing it whose cost is at least k. Specifically, let A = [A1, A2, . . . , An ] be an array of length n, and let be the subarray from index l to index r. Also, Let MAX( l, r ) be the largest number in Al. . . r. Let MIN( l, r ) be the smallest number in Al . . .r . Let OR( l , r ) be the bitwise OR of the

View Solution →

The Strange Function

One of the most important skills a programmer needs to learn early on is the ability to pose a problem in an abstract way. This skill is important not just for researchers but also in applied fields like software engineering and web development. You are able to solve most of a problem, except for one last subproblem, which you have posed in an abstract way as follows: Given an array consisting

View Solution →

Self-Driving Bus

Treeland is a country with n cities and n - 1 roads. There is exactly one path between any two cities. The ruler of Treeland wants to implement a self-driving bus system and asks tree-loving Alex to plan the bus routes. Alex decides that each route must contain a subset of connected cities; a subset of cities is connected if the following two conditions are true: There is a path between ever

View Solution →

Unique Colors

You are given an unrooted tree of n nodes numbered from 1 to n . Each node i has a color, ci. Let d( i , j ) be the number of different colors in the path between node i and node j. For each node i, calculate the value of sum, defined as follows: Your task is to print the value of sumi for each node 1 <= i <= n. Input Format The first line contains a single integer, n, denoti

View Solution →