review
play

Review. Ford-Fulkerson algorithm for max-flow: repeatedly augment - PowerPoint PPT Presentation

Review. Ford-Fulkerson algorithm for max-flow: repeatedly augment flow along paths in the residual graph If capacities are integers, F-F finds an integer valued flow Running time: O((m+n)OPT), where OPT is the value of the max flow


  1. Review…. Ford-Fulkerson algorithm for max-flow: repeatedly augment flow along paths in the residual graph If capacities are integers, F-F finds an integer valued flow Running time: O((m+n)OPT), where OPT is the value of the max flow Correctness?

  2. Today 1) Prove that Ford-Fulkerson algorithm finds a maximum flow by proving the Max-Flow Min-Cut Theorem Fundamental result in combinatorial optimization (best know example of duality) Independently proven in 1956 by Ford and Fulkerson AND by Elias, Feinstein and Claude Shannon 2) Bipartite matching

  3. Flows and Cuts are Intimately Related! Reference: On the history of the transportation and maximum flow problems . Alexander Schrijver in Math Programming, 91: 3, 2002.

  4. Outline Definitions: s-t cuts and their capacities Flow value lemma: how to measure a flow using different s-t cuts in the network The main event: Max-flow Min-Cut Theorem

  5. Cuts An s-t cut is a partition (A, B) of V with s ∈ A and t ∈ B. The capacity of a cut (A, B) is: Σ c(e) e out of A capacity of A-B cut = 9 + 15 + 8 + 30 = 62 B A 5 2 9 10 15 15 10 4 t sink s source 3 5 8 6 10 15 4 6 10 15 4 7 30

  6. Cuts capacity of cut = 9 + 15 + 8 + 30 = 62 (Capacity is sum of weights on edges leaving A.) B A 5 2 9 10 15 15 10 4 t sink s source 3 5 8 6 10 15 4 6 10 15 4 7 30

  7. Flows and Cuts Flow value lemma. Let f be any flow, and let (A, B) be any s-t cut. Then, the net flow sent across the cut is equal to the amount leaving s. ∑ f(e) - ∑ f(e) = v(f) e out of A e into A B 9 value = 24 5 2 9 A 0 9 1 0 10 10 15 15 10 4 4 6 6 t sink s source 3 5 8 6 10 0 9 15 4 10 1 6 10 15 0 4 7 30 10

  8. Flows and Cuts Flow value lemma. Let f be any flow, and let (A, B) be any s-t cut. Then, the net flow sent across the cut is equal to the amount leaving s. ∑ f(e) - ∑ f(e) = v(f) e out of A e into A 9 B value = 24 A 5 2 9 0 9 1 0 10 10 15 15 10 4 4 6 6 t sink s source 3 5 8 6 10 0 9 15 4 10 1 6 10 15 0 4 7 30 10

  9. Flows and Cuts Flow value lemma. Let f be any flow, and let (A, B) be any s-t cut. Then, the net flow sent across the cut is equal to the amount leaving s. ∑ f(e) - ∑ f(e) = v(f) e out of A e into A 9 value = 24 5 2 9 A 0 9 1 0 10 10 15 15 10 4 B 4 6 6 t sink s source 3 5 8 6 10 0 9 15 4 10 1 6 10 15 0 4 7 30 10

  10. Flows and Cuts Another interpretation: we can measure the value of a flow by selecting any s-t cut, and looking at the net flow crossing the cut.

  11. Proof Flow value lemma. Let f be any flow, and let (A, B) be any s-t cut. Then ∑ f(e) - ∑ f(e) = v(f). e out of A e into A Proof on board.

  12. Important Corollary! Flow value lemma. Let f be any flow, and let (A, B) be any s-t cut. Then ∑ f(e) - ∑ f(e) = v(f). e out of A e into A Corollary. Let f be any flow, and let (A, B) be any s-t cut. Then v(f) ≤ c(A, B). (See examples on previous slides) Proof as exercise

  13. Important Corollary! Corollary. Let f be any flow, and let (A, B) be any s-t cut. Then v(f) ≤ c(A, B). Interpretation: every cut gives an upper bound on the value of every flow, and hence the value of the maximum flow What is the best (i.e. smallest) upper bound?

  14. Minimum Cut Problem Find an s-t cut of minimum capacity. capacity = 10 + 8 + 10 = 28 B 5 2 9 A 10 15 15 10 4 t sink s source 3 5 8 6 10 15 4 6 10 15 4 7 30

  15. Max-Flow Min-Cut Theorem Theorem: Let f be a flow such that there are no s-t paths in the residual graph G f . Let (A, B) be the s-t cut where A contains the nodes reachable from s in G f , and B = V-A. Then v(f) = C(A, B), and f is a maximum flow and (A,B) is a minimum cut. Corollary: Ford-Fulkerson returns a maximum flow. Corollary: In any flow network, the value of the max flow is equal to the capacity of the min cut.

  16. Proof Proof on board

  17. Min-Cut Another corollary: given a maximum flow, we can find a minimum cut in O(m+n) time. How?

  18. Finding Min Cut 0 4 2 4 G: 0 0 0 6 0 8 10 10 2 0 0 0 0 10 s 3 9 5 10 t Flow value = 0

  19. Finding Min Cut 3 4 2 4 G 10 7 9 6 6 8 10 10 0 2 9 9 10 10 s 3 9 5 10 t maximum flow = 19 3 1 2 4 G f 10 9 6 7 1 2 1 1 s 3 5 t 9 9 10

  20. Ford-Fulkerson Wrap-Up We’ve now shown that F-F: (1) runs in O((m+n)OPT) time → pseudo-polynomial (2) finds an integer-valued flow (if capacities are integers) (3) finds a maximum flow By choosing good augmenting paths, F-F can be improved to run O(m 2 log C) time, where C is the capacity of any cut, and hence an upper bound on OPT → polynomial Other max-flow algorithms run in O(n 2 m) or O(n 3 ) time → strongly polynomial

  21. OK! But what are they good for???

  22. Matching Matching. Input: undirected graph G = (V , E). M ⊆ E is a matching if each node appears in at most 1 edge in M. Max matching: find a max cardinality matching.

  23. Bipartite Matching Bipartite matching. Input: undirected, bipartite graph G = (L ∪ R, E). M ⊆ E is a matching if each node appears in at most 1 edge in M. Max matching: find a max cardinality matching. 1 1' matching 1-2', 3-1', 4-5' 2 2' Is this the max 3 3' matching? 4 4' L R 5 5'

  24. Bipartite Matching Bipartite matching. Input: undirected, bipartite graph G = (L ∪ R, E). M ⊆ E is a matching if each node appears in at most 1 edge in M. Max matching: find a max cardinality matching. 1 1' max matching 2 2' 1-1', 2-2', 3-3' 4-5' 3 3' 4 4' L R 5 5'

  25. Bipartite Matching Max flow formulation. Direct all edges from L to R and assign capacity of 1. 1 1 1' 1 1 2 2' 1 1 3 3' 1 1 1 4 4' 1 1 L R 5 5'

  26. Bipartite Matching Max flow formulation. Add source s, and unit capacity edges from s to each node in L. 1 1 1' 1 1 1 1 2 2' 1 1 1 s 3 3' 1 1 1 1 4 4' 1 1 1 L R 5 5'

  27. Bipartite Matching Max flow formulation. Add sink t, and unit capacity edges from each node in R to t. 1 1 1' 1 1 1 1 1 1 2 2' 1 1 1 1 s 3 3' t 1 1 1 1 1 4 4' 1 1 1 1 L R 5 5'

  28. Bipartite Matching Max flow formulation. Solve max flow problem. Claim: edges between L and R with flow = 1 identify max matching. 1 1 1' 1 1 1 1 1 1 2 2' 1 1 1 1 s 3 3' t 1 1 1 1 1 4 4' 1 1 1 1 L R 5 5'

  29. Proof Show there is a bijection between a matching M in the original graph, and a flow f in the new graph, and that v(f) = |M|. Thus, a maximum flow is a maximum matching. Details: exercise

  30. Next Time More flow applications!

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend