Summary
We prove that we can partition the graph by creating a cut that divides s and
t, and the minimum such cut is the same size of the maximum flow from the
Ford-Fulkerson. To construct such a partition, we simply include everything
reachable from s in L, and everything else in R, using the residual graph from
Ford-Fulkerson.
Contents
Recap of Ford-Fulkerson Algorithm
Input: flow network
- directed graph G=(V,E) with s,t in V and capacities > 0
Output: flow of max size
When did Ford-Fulkerson stop?
- When there was no augmenting path in residual
Lemma: For a flow , if no augmenting path in
, then is a max-flow
It takes O(n+m) time to check if is a max-flow. We simply
run BFS on it.
Min-Cut Problem
A cut
is a partition of
An st-cut
is a cut where
= capacity from L to R
Input: Flow network
Output: st-cut with minimum capacity
Max-Flow Min-st-cut
Size of max-flow = min capacity of st-cut
Theorem
Proof: max-flow min st-cut & max-flow min st-cut
for any flow f and st-cut(L,R), size(f) capacity(L,R)
The intution is that the flow is going from s to t, so at some point it needs to go from L to R
Reverse Inequality
Take flow from Ford-Fulkerson (which has no st-path in residual )
Let L = vertices reachable from s in
Let R = V - L