Shortest path
The shortest paths problem is one of the most fundamental problems in graph theory. Given a directed graph , possibly weighted, and a set of pairs of vertices
, the problem is to compute, for each
, a simple path in
from
to
(a list of vertices
such that for all
,
) such that no other simple path in
from
to
has a lower total weight.
Shortest paths in undirected graphs can be computed by replacing each undirected edge with two arcs of the same weight, one going in each direction, to obtain a directed graph.
Contents
[hide]Variations
Three variations of the shortest path algorithm exist, and they are discussed in the following sections.
- In the single-pair shortest path problem, there is only one pair
in the problem set. In other words the shortest path is desired between a single pair of vertices.
- In the single-source shortest paths problem, the problem set is of the form
. One vertex,
, is designated the source, and we wish to find the shortest paths from the source to all other vertices. (To solve the analogous single-destination shortest paths problem, we merely reverse the directions of all edges, which reduces it to single-source.)
- In the all-pairs shortest paths problem, the problem set is
; that is, we wish to know the shortest paths from every vertex to every other vertex.
Approach
All the shortest paths algorithms discussed in this article have the same basic approach. At their core, they compute not the shortest paths themselves, but the distances. Using information computed in order to compute the distances, one can easily then reconstruct the paths themselves. They begin with the knowledge that the distance from any vertex to itself is zero, and they overestimate all other distances they need. (By this it is meant that they find a number for each pair
under consideration such that the distance from
to
is less than or equal to
.) At some point, all overestimates will be refined, perhaps gradually, perhaps at once, so that once the algorithm has terminated, they are exactly the correct distances.
Relaxation
There are theoretically many ways to refine overestimates but a specific way, known as relaxation, is used in all the algorithms discussed in this article. Relaxation can take place when three conditions are met:
- The currently best overestimate for the distance from some vertex
to some vertex
is
;
- The currently best overestimate for the distance from
to some vertex
is
;
- The currently best overestimate for the distance from
to
is greater than
. (This includes the case in which it is infinite.)
Relaxation refines the best overestimate for the distance from to
by setting it to
, which is better than its current value.
Theorem: Relaxation will never strictly underestimate the distance from to
.
Proof: Concatenating the shortest paths from to
and
to
gives a path from
to
with length less than or equal to
. Therefore
is an overestimate.
Theorem: In a graph with no cycles of negative weight, relaxation is impossible when all distances are correctly known.
Proof: Using the variables defined above, this implies that the distance from to
is in fact greater than the sum of the distances from
to
and
to
, which is impossible, as we can merely concatenate shortest paths from
to
and
to
to obtain a path from
to
of
, which is less.
Theorem: