objectives
play

Objectives Directed Graphs Topological ordering Strong - PDF document

2/6/19 Objectives Directed Graphs Topological ordering Strong Connectivity Greedy Algorithms Interval Scheduling Feb 6, 2019 CSCI211 - Sprenkle 1 Review What is a topological ordering? What does the graph represent?


  1. 2/6/19 Objectives • Directed Graphs Ø Topological ordering Ø Strong Connectivity • Greedy Algorithms Ø Interval Scheduling Feb 6, 2019 CSCI211 - Sprenkle 1 Review • What is a topological ordering? Ø What does the graph represent? • What are the constraints on the graph? Ø What is the output? Ø How do we find the topological ordering? • How would we implement? • What is its runtime? Feb 6, 2019 CSCI211 - Sprenkle 2 1

  2. 2/6/19 Topological Order Runtime Find a node v with no incoming edges Order v first Delete v from G Recursively compute a topological ordering of G-{ v } and append this order after v • Where are the costs? • How would we implement? Feb 6, 2019 CSCI211 - Sprenkle 3 Topological Order Runtime Find a node v with no incoming edges O(n) Order v first O(1) O(n) Delete v from G Recursively compute a topological ordering of G-{ v } O(n) and append this order after v O(1) • Find a node without incoming edges and delete it: O(n) • Repeat on all nodes Can we do better? à O(n 2 ) Feb 6, 2019 CSCI211 - Sprenkle 4 2

  3. 2/6/19 Topological Sorting Algorithm: Running Time • Theorem. Find a topological order in O(m + n) time • Pf. Ø Maintain the following information: • count[ w ] = remaining number of incoming edges • S = set of remaining nodes with no incoming edges Ø Initialization: O(m + n) via single scan through graph Ø Algorithm: • Select a node v from S, remove v from S • Decrement count[ w ] for all edges from v to w Ø Add w to S if count[ w ] = 0 Feb 6, 2019 CSCI211 - Sprenkle 5 Directed Graphs STRONG CONNECTIVITY Feb 6, 2019 CSCI211 - Sprenkle 6 3

  4. 2/6/19 Strong Connectivity • Def. Node u and v are mutually reachable if there is a path from u à v and also a path from v à u (not necessarily a direct edge) • Def. A graph is strongly connected if every pair of nodes is mutually reachable • Lemma. Let s be any node. G is strongly connected iff every node is reachable from s and s is reachable from every node Ø We want to prove this… s u v Feb 6, 2019 CSCI211 - Sprenkle 7 Strong Connectivity • If u and v are mutually reachable and v and w are mutually reachable, then u and w are mutually reachable What do we need to show to prove this is true? Feb 6, 2019 CSCI211 - Sprenkle 8 4

  5. 2/6/19 Strong Connectivity • If u and v are mutually reachable and v and w are mutually reachable, then u and w are mutually reachable. • Proof. We need to show that there is a path from u à w and from w à u . Ø By defn of mutually reachable • There is a path u à v & a path v à u • There is a path v à w, and a path w à v Ø Take path u à v and then from v à w • Path from u à w Ø Similarly for w à u Feb 6, 2019 CSCI211 - Sprenkle 9 Strong Connectivity • Def. A graph is strongly connected if every pair of nodes is mutually reachable • Lemma. Let s be any node in G. s u G is strongly connected v iff every node is reachable from s, and s is reachable from every node. Ø 1 st prove Þ Ø 2 nd prove Ü • for any nodes u and v, is there a path u à v and v à u ? Feb 6, 2019 CSCI211 - Sprenkle 10 5

  6. 2/6/19 Strong Connectivity • Def. A graph is strongly connected if every pair of nodes is mutually reachable • Lemma. Let s be any node in G. G is strongly connected iff every node is reachable from s , and s is reachable from every node. Ø Pf. Þ Follows from definition of strongly connected Ø Pf. Ü For any nodes u and v , make path u à v and v à u • u à v : concatenating u à s with s à v s u • v à u : concatenate v à s with s à u v Feb 6, 2019 CSCI211 - Sprenkle 11 Strong Connectivity Problem • Claim : We can determine if G is strongly connected in O(m + n) time strongly connected not strongly connected Hint: Can we leverage any algorithms we know have O(m+n) time? Feb 6, 2019 CSCI211 - Sprenkle 12 6

  7. 2/6/19 Strong Connectivity: Algorithm • Theorem. Can determine if G is strongly connected in O(m + n) time. • Pf. Ø Pick any node s Ø Run BFS from s in G reverse orientation of every edge in G Or, the BFS using the in edges Ø Run BFS from s in G rev Ø Return true iff both BFS executions reach all nodes Ø Correctness follows immediately from previous lemma • All reachable from one node, s is reached by all Feb 6, 2019 CSCI211 - Sprenkle 13 Strong Components • Strong components: analogous to connected component in undirected graph Ø Set of mutually reachable nodes • For any two nodes s and t in a directed graph, their strong components are either identical or disjoint Hint: Consider a node in common… Feb 6, 2019 CSCI211 - Sprenkle 14 7

  8. 2/6/19 Strong Components • For any two nodes s and t in a directed graph, their strong components are either identical or disjoint • Proof. Ø Consider v in both strong components • s à v; v à s; v à t; t à v è t à s, s à t (mutually reachable) • As soon as there is one common node, then have identical strong components Ø On the other hand, consider s and t are not mutually reachable • No node v that is in the strong component of each Ø What would it mean if there were? Feb 6, 2019 CSCI211 - Sprenkle 15 GREEDY ALGORITHMS Feb 6, 2019 CSCI211 - Sprenkle 16 8

  9. 2/6/19 Greedy Algorithms At each step, take as much as you can get à “local” optimizations • Need a proof to show that the algorithm finds an optimal solution • A counter example shows that a greedy algorithm does not provide an optimal solution Feb 6, 2019 CSCI211 - Sprenkle 17 Example of Greedy Algorithm • How do you make change to give out the fewest coins? • Determine for 34¢ Feb 6, 2019 CSCI211 - Sprenkle 18 9

  10. 2/6/19 Example of Greedy Algorithm • How do you make change to give out the fewest coins? while change > 0: if change >= 25: print “Quarter” change -= 25 elif change >= 10: print “Dime” change -= 10 Let’s generalize … … • Ex: 34¢. Feb 6, 2019 CSCI211 - Sprenkle 19 Coin Changing • Goal. Given currency denominations: 1, 5, 10, 25, 100, devise a method to pay amount to customer using fewest number of coins. • Ex: 34¢. • Cashier's algorithm. At each iteration, add coin of the largest value that does not take us past the amount to be paid. • Ex: $2.89. Feb 6, 2019 CSCI211 - Sprenkle 20 10

  11. 2/6/19 Greedy Algorithm Template • Consider candidates (or whatever) in some order Ø Decision: What order is best? • Take each candidate provided it’s compatible with the ones already taken What are options for orders? What is our goal? What are we trying to minimize/maximize? What is the worst case? Feb 6, 2019 CSCI211 - Sprenkle 21 Greedy Algorithm Pseudo-Code In some specified order Set Greedy (List candidates){ solution = new Set( ); while candidates.isNotEmpty() next = candidates.select() //use selection criteria, //remove from candidate and return value if solution.isFeasible(next) //constraints satisfied solution.union(next) if solution.solves() return solution //No more candidates and no solution return null } Feb 6, 2019 CSCI211 - Sprenkle 22 11

  12. 2/6/19 Coin-Changing: Greedy Algorithm • Cashier's algorithm. At each iteration, add coin of the largest value that does not take us past the amount to be paid. Sort coins’ denominations by value: c Sort coins’ denominations by value: c 1 < c < c 2 < … < < … < c n . coins selected S S = = f while while x ¹ 0 let let k be largest integer such that c be largest integer such that c k £ x if k = 0 if = 0 How could this happen? return return "no solution found" "no solution found" x = x - c k S S = S = S È {k} return return S Is cashier's algorithm optimal ? Feb 6, 2019 CSCI211 - Sprenkle 23 Coin-Changing: Analysis of Greedy Algorithm • Observation. Greedy algorithm is sub-optimal for US postal denominations: Ø 500 300 200 100 86 85 79 78 66 65 46 44 33 32 20 4 3 2 1 • Counterexample. 158¢. Ø Greedy: 100, 44, 4, 4, 4, 2. Ø Optimal: 79, 79. Feb 6, 2019 25 CSCI211 - Sprenkle 12

  13. 2/6/19 Proving Greedy Algorithms Work • Specifically, produce an optimal solution • Approaches: Ø Greedy algorithm stays ahead • Does better than any other algorithm at each step Ø Exchange argument • Transform any solution into a greedy solution Ø Structural argument • Figure out some structural bound that all solutions must meet Feb 6, 2019 CSCI211 - Sprenkle 26 Greedy algorithm stays ahead INTERVAL SCHEDULING Feb 6, 2019 CSCI211 - Sprenkle 27 13

  14. 2/6/19 Interval Scheduling • Job j starts at s j and finishes at f j • Two jobs are compatible if they don't overlap • Goal : find maximum subset of mutually compatible jobs a • Every job is worth equal b money. • To earn the most money à c schedule the most jobs d e f g h Time 0 1 2 3 4 5 6 7 8 9 10 11 Feb 6, 2019 CSCI211 - Sprenkle 28 Greedy Algorithm Template • Consider candidates (in this case, jobs) in some order • Take each job provided it’s compatible with the ones already taken Let’s take as an example the What are options for orders? current order What is our goal? What are we trying to optimize? What is the worst case? (Helps us with finding counterexamples to optimality.) Feb 6, 2019 CSCI211 - Sprenkle 29 14

  15. 2/6/19 Looking Ahead • Problem Set 4 due Friday • Exam given out on Friday Feb 6, 2019 CSCI211 - Sprenkle 30 15

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