Edmonds–Karp algorithm
Template:Short description Template:Use American English In computer science, the Edmonds–Karp algorithm is an implementation of the Ford–Fulkerson method for computing the maximum flow in a flow network in time. The algorithm was first published by Yefim Dinitz in 1970,[1][2] and independently published by Jack Edmonds and Richard Karp in 1972.[3] Dinitz's algorithm includes additional techniques that reduce the running time to .[2] Template:Sister project
Algorithm
The algorithm is identical to the Ford–Fulkerson algorithm, except that the search order when finding the augmenting path is defined. The path found must be a shortest path that has available capacity. This can be found by a breadth-first search, where we apply a weight of 1 to each edge. The running time of is found by showing that each augmenting path can be found in time, that every time at least one of the Template:Mvar edges becomes saturated (an edge which has the maximum possible flow), that the distance from the saturated edge to the source along the augmenting path must be longer than last time it was saturated, and that the length is at most . Another property of this algorithm is that the length of the shortest augmenting path increases monotonically.[4] A proof outline using these properties is as follows:
The proof first establishes that distance of the shortest path from the source node Template:Mvar to any non-sink node Template:Mvar in a residual flow network increases monotonically after each augmenting iteration (Lemma 1, proven below). Then, it shows that each of the edges can be critical at most times for the duration of the algorithm, giving an upper-bound of augmenting iterations. Since each iteration takes time (bounded by the time for finding the shortest path using Breadth-First-Search), the total running time of Edmonds-Karp is as required. [4]
To prove Lemma 1, one can use proof by contradiction by assuming that there is an augmenting iteration that causes the shortest path distance from Template:Mvar to Template:Mvar to decrease. Let Template:Mvar be the flow before such an augmentation and be the flow after. Denote the minimum distance in a residual flow network Template:Tmath from nodes as . One can derive a contradiction by showing that , meaning that the shortest path distance between source node Template:Mvar and non-sink node Template:Mvar did not in fact decrease. [4]
Pseudocode
algorithm EdmondsKarp is
input:
graph (graph[v] should be the list of edges coming out of vertex v in the
original graph and their corresponding constructed reverse edges
which are used for push-back flow.
Each edge should have a capacity 'cap', flow, source 's' and sink 't'
as parameters, as well as a pointer to the reverse edge 'rev'.)
s (Source vertex)
t (Sink vertex)
output:
flow (Value of maximum flow)
flow := 0 (Initialize flow to zero)
repeat
(Run a breadth-first search (bfs) to find the shortest s-t path.
We use 'pred' to store the edge taken to get to each vertex,
so we can recover the path afterwards)
q := queue()
q.push(s)
pred := array(graph.length)
while not empty(q) and pred[t] = null
cur := q.pop()
for Edge e in graph[cur] do
if pred[e.t] = null and e.t ≠ s and e.cap > e.flow then
pred[e.t] := e
q.push(e.t)
if not (pred[t] = null) then
(We found an augmenting path.
See how much flow we can send)
df := ∞
for (e := pred[t]; e ≠ null; e := pred[e.s]) do
df := min(df, e.cap - e.flow)
(And update edges by that amount)
for (e := pred[t]; e ≠ null; e := pred[e.s]) do
e.flow := e.flow + df
e.rev.flow := e.rev.flow - df
flow := flow + df
until pred[t] = null (i.e., until no augmenting path was found)
return flow
Example
Given a network of seven nodes, source A, sink G, and capacities as shown below:
File:Edmonds-Karp flow example 0.svg
In the pairs written on the edges, is the current flow, and is the capacity. The residual capacity from to is , the total capacity, minus the flow that is already used. If the net flow from to is negative, it contributes to the residual capacity.
| Path | Capacity | Resulting network |
|---|---|---|
| File:Edmonds-Karp flow example 1.svg | ||
| File:Edmonds-Karp flow example 2.svg | ||
| File:Edmonds-Karp flow example 3.svg | ||
| File:Edmonds-Karp flow example 4.svg |
Notice how the length of the augmenting path found by the algorithm (in red) never decreases. The paths found are the shortest possible. The flow found is equal to the capacity across the minimum cut in the graph separating the source and the sink. There is only one minimal cut in this graph, partitioning the nodes into the sets and , with the capacity
Notes
References
- Algorithms and Complexity (see pages 63–69). https://web.archive.org/web/20061005083406/http://www.cis.upenn.edu/~wilf/AlgComp3.html