In graph theory, the shortest path problem is the problem of finding a path between two vertices (or nodes) in a graph such that the sum of the weights of its constituent edges is minimized.
The problem of finding the shortest path between two intersections on a road map may be modeled as a special case of the shortest path problem in graphs, where the vertices correspond to intersections and the edges correspond to road segments, each weighted by the length of the segment.
The shortest path problem can be defined for graphs whether undirected, directed, or mixed. Here it is defined for undirected graphs; for directed graphs the definition of path requires that consecutive vertices be connected by an appropriate directed edge.[1]
Two vertices are adjacent when they are both incident to a common edge.A path in an undirected graph is a sequence of vertices
P=(v1,v2,\ldots,vn)\inV x V x … x V
vi
vi+1
1\leqi<n
P
n-1
v1
vn
vi
Let
E=\{ei,\}
ei,
vi
vj
f:E → R
G
v
v'
P=(v1,v2,\ldots,vn)
v1=v
vn=v'
n
n-1 | |
\sum | |
i=1 |
f(ei,).
f:E → \{1\}
The problem is also sometimes called the single-pair shortest path problem, to distinguish it from the following variations:
These generalizations have significantly more efficient algorithms than the simplistic approach of running a single-pair shortest path algorithm on all relevant pairs of vertices.
Several well known algorithms exist for solving this problem and its variants.
Additional algorithms and associated evaluations may be found in .
Weights | Author | ||
---|---|---|---|
R | O(V2) | ||
R | O((E + V) log V) | (binary heap) | |
R | O(E + V log V) | (Fibonacci heap) | |
N | O(E) | (requires constant-time multiplication) |
An algorithm using topological sorting can solve the single-source shortest path problem in time in arbitrarily-weighted DAGs.
The following table is taken from, with some corrections and additions.A green background indicates an asymptotically best bound in the table; L is the maximum length (or weight) among all edges, assuming integer edge weights.
Weights | Algorithm | Time complexity | Author | |
---|---|---|---|---|
R | O(V2EL) | |||
R | O(VE) | ,, | ||
R | O(V2log{V}) | |||
R | Dijkstra's algorithm with list | O(V2) | ,, Minty (see), | |
R | O((E+V)log{V}) | |||
R | Dijkstra's algorithm with Fibonacci heap | O(E+Vlog{V}) | , | |
R | Quantum Dijkstra algorithm with adjacency list | O(\sqrt{VE}log2{V}) | Dürr et al. 2006[2] | |
N | Dial's algorithm[3] (Dijkstra's algorithm using a bucket queue with L buckets) | O(E+LV) | ||
O(Elog{log{L}}) | , | |||
O(ElogE/VL) | , | |||
O(E+V\sqrt{log{L}}) | ||||
N | Thorup | O(E+Vlog{log{V}}) |
Weights | Algorithm | Time complexity | Author | |
---|---|---|---|---|
R | O(V2EL) | |||
R | O(VE) | ,, | ||
R | O(VE+VlogV) | |||
R | O(VE+VlogV) | ,, adapted after | ||
Z | Johnson's technique applied to Dial's algorithm | O(V(E+L)) | , adapted after | |
Z | Interior-point method with Laplacian solver | O(E10/7logO(1)VlogO(1)L) | ||
Z | Interior-point method with \ellp | E4/3logO(1)L | ||
Z | Robust interior-point method with sketching | O((E+V3/2)logO(1)VlogO(1)L) | ||
Z | \ell1 | O(E1+o(1)logL) | ||
Z | Based on low-diameter decomposition | O(Elog8VlogL) | ||
R | Hop-limited shortest paths | O(EV8/9logO(1)V) |
Finds a negative cycle or calculates distances to all vertices.
The all-pairs shortest path problem finds the shortest paths between every pair of vertices, in the graph. The all-pairs shortest paths problem for unweighted directed graphs was introduced by, who observed that it could be solved by a linear number of matrix multiplications that takes a total time of .
Weights | Time complexity | Algorithm | ||||
---|---|---|---|---|---|---|
R | Floyd–Warshall algorithm | |||||
\{1,infty\} | O(V\omegalogV) | Seidel's algorithm (expected running time) | ||||
N | O(V3/2
) | |||||
R | ||||||
N | applied to every vertex (requires constant-time multiplication). |
Weights | Time complexity | Algorithm | ||||
---|---|---|---|---|---|---|
R | O(V3) | Floyd–Warshall algorithm | ||||
N | O(V3/2
) | |||||
R | O(V2.5log2{V}) | Quantum search[4] [5] | ||||
R | Johnson–Dijkstra | |||||
R | ||||||
N |
Shortest path algorithms are applied to automatically find directions between physical locations, such as driving directions on web mapping websites like MapQuest or Google Maps. For this application fast specialized algorithms are available.[6]
If one represents a nondeterministic abstract machine as a graph where vertices describe states and edges describe possible transitions, shortest path algorithms can be used to find an optimal sequence of choices to reach a certain goal state, or to establish lower bounds on the time needed to reach a given state. For example, if vertices represent the states of a puzzle like a Rubik's Cube and each directed edge corresponds to a single move or turn, shortest path algorithms can be used to find a solution that uses the minimum possible number of moves.
In a networking or telecommunications mindset, this shortest path problem is sometimes called the min-delay path problem and usually tied with a widest path problem. For example, the algorithm may seek the shortest (min-delay) widest path, or widest shortest (min-delay) path.
A more lighthearted application is the games of "six degrees of separation" that try to find the shortest path in graphs like movie stars appearing in the same film.
Other applications, often studied in operations research, include plant and facility layout, robotics, transportation, and VLSI design.[7]
A road network can be considered as a graph with positive weights. The nodes represent road junctions and each edge of the graph is associated with a road segment between two junctions. The weight of an edge may correspond to the length of the associated road segment, the time needed to traverse the segment, or the cost of traversing the segment. Using directed edges it is also possible to model one-way streets. Such graphs are special in the sense that some edges are more important than others for long-distance travel (e.g. highways). This property has been formalized using the notion of highway dimension.[8] There are a great number of algorithms that exploit this property and are therefore able to compute the shortest path a lot quicker than would be possible on general graphs.
All of these algorithms work in two phases. In the first phase, the graph is preprocessed without knowing the source or target node. The second phase is the query phase. In this phase, source and target node are known. The idea is that the road network is static, so the preprocessing phase can be done once and used for a large number of queries on the same road network.
The algorithm with the fastest known query time is called hub labeling and is able to compute shortest path on the road networks of Europe or the US in a fraction of a microsecond.[9] Other techniques that have been used are:
For shortest path problems in computational geometry, see Euclidean shortest path.
The shortest multiple disconnected path [10] is a representation of the primitive path network within the framework of Reptation theory. The widest path problem seeks a path so that the minimum label of any edge is as large as possible.
Other related problems may be classified into the following categories.
Unlike the shortest path problem, which can be solved in polynomial time in graphs without negative cycles, shortest path problems which include additional constraints on the desired solution path are called Constrained Shortest Path First, and are harder to solve. One example is the constrained shortest path problem,[11] which attempts to minimize the total cost of the path while at the same time maintaining another metric below a given threshold. This makes the problem NP-complete (such problems are not believed to be efficiently solvable for large sets of data, see P = NP problem). Another NP-complete example requires a specific set of vertices to be included in the path,[12] which makes the problem similar to the Traveling Salesman Problem (TSP). The TSP is the problem of finding the shortest path that goes through every vertex exactly once, and returns to the start. The problem of finding the longest path in a graph is also NP-complete.
The Canadian traveller problem and the stochastic shortest path problem are generalizations where either the graph is not completely known to the mover, changes over time, or where actions (traversals) are probabilistic.[13] [14]
Sometimes, the edges in a graph have personalities: each edge has its own selfish interest. An example is a communication network, in which each edge is a computer that possibly belongs to a different person. Different computers have different transmission speeds, so every edge in the network has a numeric weight equal to the number of milliseconds it takes to transmit a message. Our goal is to send a message between two points in the network in the shortest time possible. If we know the transmission-time of each computer (the weight of each edge), then we can use a standard shortest-paths algorithm. If we do not know the transmission times, then we have to ask each computer to tell us its transmission-time. But, the computers may be selfish: a computer might tell us that its transmission time is very long, so that we will not bother it with our messages. A possible solution to this problem is to use a variant of the VCG mechanism, which gives the computers an incentive to reveal their true weights.
In some cases, the main goal is not to find the shortest path, but only to detect if the graph contains a negative cycle. Some shortest-paths algorithms can be used for this purpose:
O(|V||E|)
Many problems can be framed as a form of the shortest path for some suitably substituted notions of addition along a path and taking the minimum. The general approach to these is to consider the two operations to be those of a semiring. Semiring multiplication is done along the path, and the addition is between paths. This general framework is known as the algebraic path problem.[16] [17] [18]
Most of the classic shortest-path algorithms (and new ones) can be formulated as solving linear systems over such algebraic structures.[19]
More recently, an even more general framework for solving these (and much less obviously related problems) has been developed under the banner of valuation algebras.[20]
In real-life situations, the transportation network is usually stochastic and time-dependent. In fact, a traveler traversing a link daily may experiences different travel times on that link due not only to the fluctuations in travel demand (origin-destination matrix) but also due to such incidents as work zones, bad weather conditions, accidents and vehicle breakdowns. As a result, a stochastic time-dependent (STD) network is a more realistic representation of an actual road network compared with the deterministic one.[21] [22]
Despite considerable progress during the course of the past decade, it remains a controversial question how an optimal path should be defined and identified in stochastic road networks. In other words, there is no unique definition of an optimal path under uncertainty. One possible and common answer to this question is to find a path with the minimum expected travel time. The main advantage of using this approach is that efficient shortest path algorithms introduced for the deterministic networks can be readily employed to identify the path with the minimum expected travel time in a stochastic network. However, the resulting optimal path identified by this approach may not be reliable, because this approach fails to address travel time variability. To tackle this issue some researchers use distribution of travel time instead of expected value of it so they find the probability distribution of total travelling time using different optimization methods such as dynamic programming and Dijkstra's algorithm .[23] These methods use stochastic optimization, specifically stochastic dynamic programming to find the shortest path in networks with probabilistic arc length.[24] The concept of travel time reliability is used interchangeably with travel time variability in the transportation research literature, so that, in general, one can say that the higher the variability in travel time, the lower the reliability would be, and vice versa.
In order to account for travel time reliability more accurately, two common alternative definitions for an optimal path under uncertainty have been suggested. Some have introduced the concept of the most reliable path, aiming to maximize the probability of arriving on time or earlier than a given travel time budget. Others, alternatively, have put forward the concept of an α-reliable path based on which they intended to minimize the travel time budget required to ensure a pre-specified on-time arrival probability.