cs4102 algorithms
play

CS4102 Algorithms Fall 2018 Warm up: Remember Residual Graphs - PowerPoint PPT Presentation

CS4102 Algorithms Fall 2018 Warm up: Remember Residual Graphs Keep track of net available flow along each edge Forward edges : weight is equal to available flow along that edge in the flow graph =


  1. CS4102 Algorithms Fall 2018 Warm up: Remember Residual Graphs • Keep track of net available flow along each edge • “ Forward edges ”: weight is equal to available flow along that edge in the flow graph – 𝑥 𝑓 = 𝑑 𝑓 − 𝑔(𝑓) • “ Back edges ”: weight is equal to flow along that edge in the flow graph – 𝑥 𝑓 = 𝑔(𝑓) Residual Graph 𝑯 𝒈 Flow Graph 𝑯 2 1 2/2 1/3 0 2 2/3 2 𝑡 1 1 1/3 1/1 𝑡 1 𝑢 𝑢 1/2 2/2 2 2 3 0 2/3 0 1 3 1 0/1 1/2 1 2/3 1 2

  2. Today’s Keywords • Reductions • Bipartite Matching • Vertex Cover • Independent Set 2

  3. CLRS Readings • Chapter 34 3

  4. Homeworks • HW8 due Friday 11/30 at 11pm – Written (use LaTeX) – Graphs 4

  5. Divide and Conquer* When is this a • Divide: good strategy? – Break the problem into multiple subproblems, each smaller instances of the original • Conquer: – If the suproblems are “large”: • Solve each subproblem recursively – If the subproblems are “small”: • Solve them directly (base case) • Combine: – Merge together solutions to subproblems *CLRS Chapter 4

  6. Dynamic Programming • Requires Optimal Substructure – Solution to larger problem contains the solutions to smaller ones • Idea: 1. Identify recursive structure of the problem 2. Select a good order for solving subproblems • Usually smallest problem first 6

  7. Greedy Algorithms • Require Optimal Substructure – Solution to larger problem contains the solution to a smaller one – Only one subproblem to consider! • Idea: 1. Identify a greedy choice property • How to make a choice guaranteed to be included in some optimal solution 2. Repeatedly apply the choice property until no subproblems remain 7

  8. So far • Divide and Conquer, Dynamic Programming, Greedy – Take an instance of Problem A, relate it to smaller instances of Problem A • Next: – Take an instance of Problem A, relate it to an instance of Problem B 8

  9. Edge-Disjoint Paths Given a graph 𝐻 = (𝑊, 𝐹) , a start node 𝑡 and a destination node 𝑢 , give the maximum number of paths from 𝑡 to 𝑢 which share no edges g 𝑡 Set of edge-disjoint paths of size 3 h f 𝑢 e b c a 9

  10. Edge-Disjoint Paths Given a graph 𝐻 = (𝑊, 𝐹) , a start node 𝑡 and a destination node 𝑢 , give the maximum number of paths from 𝑡 to 𝑢 which share no edges g 𝑡 Set of edge-disjoint paths of size 4 h f 𝑢 e b c a 10

  11. Edge-Disjoint Paths Algorithm Make 𝑡 and 𝑢 the source and sink, give each edge capacity 1 , find the max flow. g 𝑡 Set of edge-disjoint paths of size 4 h f 𝑢 e b c a 11

  12. Vertex-Disjoint Paths Given a graph 𝐻 = (𝑊, 𝐹) , a start node 𝑡 and a destination node 𝑢 , give the maximum number of paths from 𝑡 to 𝑢 which share no vertices g 𝑡 Not a vertex-disjoint path! h f 𝑢 e b c a 12

  13. Vertex-Disjoint Paths Algorithm Idea: Convert an instance of the vertex-disjoint paths problem into an instance of edge-disjoint paths Make two copies of each node, one connected to incoming edges, the other to outgoing edges Compute Edge-Disjoint paths on new graph g 𝑡 Restricts to 1 edge g g in out h f 𝑢 e b c 13 a

  14. Maximum Bipartite Matching Dog Lovers Dogs 14

  15. Maximum Bipartite Matching Dog Lovers Dogs 15

  16. Maximum Bipartite Matching Dog Lovers Dogs 16

  17. Maximum Bipartite Matching Given a graph 𝐻 = (𝑀, 𝑆, 𝐹) a set of left nodes, right nodes, and edges between left and right Find the largest set of edges 𝑁 ⊆ 𝐹 such that each node 𝑣 ∈ 𝑀 or 𝑤 ∈ 𝑆 is incident to at most one edge. 17

  18. Maximum Bipartite Matching Using Max Flow Make 𝐻 = (𝑀,𝑆, 𝐹) a flow network 𝐻 ′ = (𝑊 ′ , 𝐹 ′ ) by: • Adding in a source and sink to the set of nodes: – 𝑊 ′ = 𝑀 ∪ 𝑆 ∪ {𝑡, 𝑢} • Adding an edge from source to 𝑀 and from 𝑆 to sink: – 𝐹 ′ = 𝐹 ∪ 𝑣 ∈ 𝑀 𝑡, 𝑣 } ∪ 𝑤 ∈ 𝑠 𝑤, 𝑢 } • Make each edge capacity 1 : 1 – ∀𝑓 ∈ 𝐹 ′ , 𝑑 𝑓 = 1 1 1 1 1 1 1 1 1 𝑡 1 𝑢 1 1 1 11 1 1 18

  19. Run Time Θ(𝐹 ⋅ 𝑊) 1. Make 𝐻 into 𝐻′ Θ(𝑀 + 𝑆) 2. Compute Max Flow on 𝐻′ 𝑔 ≤ 𝑀 Θ(𝐹 ⋅ 𝑊) 3. Return 𝑁 as all “middle” edges with flow 1 Θ(𝑀 + 𝑆) 19

  20. Reductions • Algorithm technique of supreme ultimate power • Convert instance of problem A to an instance of Problem B • Convert solution of problem B back to a solution of problem A 20

  21. Reductions Shows how two different problems relate to each other 21

  22. MacGyver’s Reduction Problem we do know how to solve Problem we don’t know how to solve Opening a door Lighting a fire Aim duct at door, insert keg How? Solution for 𝑩 Solution for 𝑪 Keg cannon Alcohol, wood, battering ram matches Put fire under the Keg Reduction 22

  23. Bipartite Matching Reduction Problem we do know how to solve Problem we don’t know how to solve Bipartite Matching Max Flow 2 3 3 𝑡 𝑢 3 2 1 2 3 1 2 3 Ford Fulkerson Solution for 𝑪 Solution for 𝑩 2 1 0 2 2 1 𝑡 1 1 𝑢 2 2 3 0 0 1 3 1 1 2 23

  24. In General: Reduction Problem we do know how to solve Problem we don’t know how to solve Map Instances of problem 𝑩 to Instances of 𝑪 Using any Algorithm for 𝑪 Map Solutions of problem 𝑪 to Solutions of 𝑩 Solution for 𝑩 Solution for 𝑪 Reduction 24

  25. Worst-case lower-bound Proofs Lighting a fire Opening a door reduces to Problem B Problem A Alcohol, wood, Keg cannon matches battering ram can be used to make Algorithm for B Algorithm for A 𝑩 is not a harder problem than 𝑪 𝑩 ≤ 𝑪 The name “reduces” is confusing: it is in the opposite direction of the making

  26. Proof of Lower Bound by Reduction To Show: 𝑍 is slow 1. We know X is slow (e.g., X = some way to open the door) 2. Assume Y is quick [toward contradiction] ( Y = some way to light a fire) 3. Show how to use Y to perform X quickly 4. X is slow, but Y could be used to perform X quickly conclusion: Y must not actually be quick

  27. Reduction Proof Notation 𝐶 𝑔(𝑜) -reduces to 𝐵 Problem B Problem A 𝑍 can be used to make 𝑌 With 𝑃(𝑔 𝑜 ) overhead Algorithm for B Algorithm for A 𝑩 is not a harder problem than 𝑪 𝑩 ≤ 𝑪 If 𝑩 requires time 𝛁(𝒈 𝒐 ) time then 𝑪 also requires 𝛁(𝒈 𝒐 ) time 𝑩 ≤ 𝒈(𝒐) 𝑪 27

  28. Party Problem Draw Edges between people who don’t get along Find the maximum number of people who get along 28

  29. Maximum Independent Set • Independent set: 𝑇 ⊆ 𝑊 is an independent set if no two nodes in 𝑇 share an edge • Maximum Independent Set Problem: Given a graph 𝐻 = (𝑊, 𝐹) find the maximum independent set 𝑇 29

  30. Example Independent set of size 6 30

  31. Generalized Baseball 31

  32. Generalized Baseball Need to place defenders on bases such that every edge is defended What’s the fewest number of defenders needed? 32

  33. Minimum Vertex Cover • Vertex Cover: 𝐷 ⊆ 𝑊 is a vertex cover if every edge in 𝐹 has one of its endpoints in 𝐷 • Minimum Vertex Cover: Given a graph 𝐻 = (𝑊, 𝐹) find the minimum vertex cover 𝐷 33

  34. Example Vertex cover of size 5 34

  35. MaxIndSet MinVertCov 𝐶 𝑃(𝑊) -reduces to 𝐵 Problem B Problem A 𝑍 can be used to make 𝑌 With 𝑃(𝑊) overhead Algorithm for B Algorithm for A If 𝑩 requires time 𝛁(𝒈 𝒐 ) time then 𝑪 also requires 𝛁(𝒈 𝒐 ) time 𝑩 ≤ 𝑾 𝑪 35

  36. We need to build this Reduction MinVertCov O(V) Time MaxIndSet Relate Instances of MaxIndSet to Instances of MinVertCov Using any Algorithm for MinVertCov Relate Solutions of MinVertCov to Solution for MinVertCov Solution for MaxIndSet Solutions of MaxIndSet Reduction 36

  37. Reduction Idea 𝑇 is an independent set of 𝐻 iff 𝑊 − 𝑇 is a vertex cover of 𝐻 Independent Set Vertex Cover 37

  38. Reduction Idea 𝑇 is an independent set of 𝐻 iff 𝑊 − 𝑇 is a vertex cover of 𝐻 Vertex Cover Independent Set 38

  39. Proof: 𝑇 is an independent set of 𝐻 iff 𝑊 − 𝑇 is a vertex cover of 𝐻 Let 𝑇 be an independent set Consider any edge 𝑦, 𝑧 ∈ 𝐹 If 𝑦 ∈ 𝑇 then 𝑧 ∉ 𝑇 , because o.w. 𝑇 would not be an independent set Therefore 𝑧 ∈ 𝑊 − 𝑇 , so edge (𝑦, 𝑧) is covered by 𝑊 − 𝑇 39

  40. Proof: 𝑇 is an independent set of 𝐻 iff 𝑊 − 𝑇 is a vertex cover of 𝐻 Let V − 𝑇 be a vertex cover Consider any edge 𝑦, 𝑧 ∈ 𝐹 At least one of 𝑦 and 𝑧 belong to 𝑊 − 𝑇 , because V − 𝑇 is a vertex cover Therefore 𝑦 and 𝑧 are not both in 𝑇 , No edge has both end-nodes in 𝑇 , thus 𝑇 is an independent set 40

  41. MaxVertCov -Time Reducable to MinIndSet MinVertCov O(V) Time MaxIndSet Do nothing Using any Algorithm for MinVertCov Take complement of solution Solution for MinVertCov Solution for MaxIndSet Reduction 41

  42. MaxIndSet -Time Reducable to MinVertCov MaxIndSet MinVertCov O(V) Time Do nothing Using any Algorithm for MaxIndSet Solution for MinVertCov Solution for MaxIndSet Take complement of solution Reduction 42

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