Problem Description
You are given an undirected weighted connected graph with n
nodes and an array of edges. Each edge connects two nodes with a certain weight. A restricted path from node 1
to node n
is defined as a path where each subsequent node in the path has a shorter distance to node n
than the previous node. Your task is to find the number of restricted paths from node 1
to node n
, returning the result modulo 10^9 + 7
.
Key Insights
- Use Dijkstra's algorithm to determine the shortest distance from each node to node
n
. - A restricted path requires that the distance to the last node must be strictly greater than the distance to the next node along the path.
- Dynamic programming can be employed to count the number of valid paths satisfying the restriction.
Space and Time Complexity
Time Complexity: O(E log V), where E is the number of edges and V is the number of vertices. This is due to using Dijkstra's algorithm for shortest path calculation and a graph traversal for counting paths.
Space Complexity: O(V + E), for storing the graph representation and maintaining the distance and path count arrays.
Solution
To solve this problem, we can follow these steps:
- Construct the graph using an adjacency list from the given edges.
- Use Dijkstra's algorithm to compute the shortest distance from every node to node
n
. - Implement a depth-first search (DFS) or dynamic programming approach to count the restricted paths from node
1
to noden
, ensuring that we only follow paths that maintain the distance restriction.