We can't find the internet
Attempting to reconnect
Something went wrong!
Hang in there while we get back on track
Edmonds-Karp Algorithm
::
2025-02-27Solving the maximum flow problem with the Edmonds-Karp Algorithm
Summary
Edmonds-Karp is an example of a Ford-Fulkerson algorithm that solves a max-flow problem.
Contents
Max Flow Min Cut Algorithms
- Ford-Fulkerson
- Find augmenting paths (from s to t) using DFS or BFS
- O(mC)
- C is size of max flow
- Assumes integer capacities
- Edmonds-Karp
- Finds augmenting paths using BFS
- No assumptions on capacities
Ford-Fulkerson Review
Input: Flow network G=(V,E) with integer capacities
- Set
- Build residual network
- Check for st-path P in using BFS or DFS
- If no such path, return f
- Let c(P) = min capacity along P in
- Augment f by c(P) units along P
- Repeat to 2 until no st-path
Edmonds-Karp Algorithm
Input: Flow network G=(V,E) with integer capacities
- Set
- Build residual network
- Check for st-path P in using BFS or DFS
- If no such path, return f
- Let c(P) = min capacity along P in
- Augment f by c(P) units along P
- Repeat to 2 until no st-path
At least one edge is removed every round (when edge reaches full capacity)
Proof outline
In order to prove that runtime is , we’re going to prove the # of rounds is
BFS runs in linear time, so running it mn times gives us
In every round, residual graph changes, at least one edge is deleted
Key lemma
: For every edge e, e is deleted and reinserted later times
Since there are m edges, and the lemma holds for every edge, there are total rounds
BFS Properties
BFS Input: directed graph G=(V,E), no edge weights,
Output:
Level goes up by 1 each vertex.
It cannot go up by more than one because
definitionally the level is the minimum. It cannot stay the same or go down,
otherwise there’s a shorter path.
How does a level change as the residual network changes?
A level can go up by removing an edge
Adding and Deleting Edges
How does change in a round?
For :
- add if flow was full and then reduced
- so
- remove if flow is now full
- so
- add if flow was empty then increase
- so
- remove if flow is now emtpy
- so
Proof of Claim
Claim: For every , level(z) does not decrease
It might decrease if we add edge
Suppose level(z) = i, add to so
- BFS Path
- level(y) = level(z) + 1
If the level of y is < z, then we would have already included it in the BFS path to z. Anything else must mean which means adding the new edge will be at least level(z) + 1
Deleting then readding an edge from the residual graph strictly increases the level