Presentation is loading. Please wait.

Presentation is loading. Please wait.

9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne Adam Smith Algorithm Design and Analysis L ECTURE 6 Greedy Algorithms.

Similar presentations


Presentation on theme: "9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne Adam Smith Algorithm Design and Analysis L ECTURE 6 Greedy Algorithms."— Presentation transcript:

1 9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne Adam Smith Algorithm Design and Analysis L ECTURE 6 Greedy Algorithms Cont’d Minimizing lateness

2 9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne Greedy Algorithms Build up a solution to an optimization problem at each step shortsightedly choosing the option that currently seems the best. –Sometimes good –Often does not work –Proving correctness can be tricky, because algorithm is unstructured

3 Last lecture (KT, Chapter 4.1) Two types of correctness arguments “Greedy stays ahead” –Interval scheduling problem “Structural argument” –Interval partitioning Today: “exchange” 9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne 012345678910101 f g h e a b c d Time 99:3 0 1010 10:301 11:301212 12:3011:3 0 22:3 0 h c b a e d g f i j 33:3 0 44:3 0 1 2 3 4

4 Scheduling to minimize lateness 9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne

5 Scheduling to Minimizing Lateness Minimizing lateness problem. n Single resource processes one job at a time. n Job j requires t j units of processing time and is due at time d j. n If j starts at time s j, it finishes at time f j = s j + t j. n Lateness: j = max { 0, f j - d j }. n Goal: schedule all jobs to minimize maximum lateness L = max j. Ex: 01234567891011 12131415 d 5 = 14d 2 = 8d 6 = 15d 1 = 6d 4 = 9d 3 = 9 lateness = 0lateness = 2 djdj 6 tjtj 3 1 8 2 2 9 1 3 9 4 4 14 3 5 15 2 6 max lateness = 6

6 Greedy strategies?

7 Minimizing Lateness: Greedy Algorithms Greedy template. Consider jobs in some order. n [Shortest processing time first] Consider jobs in ascending order of processing time t j. n [Earliest deadline first] Consider jobs in ascending order of deadline d j. n [Smallest slack] Consider jobs in ascending order of slack d j - t j.

8 Greedy template. Consider jobs in some order. n [Shortest processing time first] Consider jobs in ascending order of processing time t j. n [Smallest slack] Consider jobs in ascending order of slack d j - t j. counterexample djdj tjtj 100 1 1 10 2 djdj tjtj 2 1 1 2 Minimizing Lateness: Greedy Algorithms

9 01234567891011 12131415 d 5 = 14d 2 = 8d 6 = 15d 1 = 6d 4 = 9d 3 = 9 max lateness = 1 Sort n jobs by deadline so that d 1  d 2  …  d n t  0 for j = 1 to n Assign job j to interval [t, t + t j ] s j  t, f j  t + t j t  t + t j output intervals [s j, f j ] Minimizing Lateness: Greedy Algorithm Greedy algorithm. Earliest deadline first.

10 Minimizing Lateness: No Idle Time Observation. There exists an optimal schedule with no idle time. Observation. The greedy schedule has no idle time. 0123456 d = 4d = 6 7891011 d = 12 0123456 d = 4d = 6 7891011 d = 12

11 Minimizing Lateness: Inversions Def. An inversion in schedule S is a pair of jobs i and j such that: i < j but j scheduled before i. Observation. Greedy schedule has no inversions. Observation. If a schedule (with no idle time) has an inversion, it has one with a pair of inverted jobs scheduled consecutively. ij before swap inversion

12 Minimizing Lateness: Inversions Def. An inversion in schedule S is a pair of jobs i and j such that: i < j but j scheduled before i. Claim. Swapping two adjacent, inverted jobs reduces the number of inversions by one and does not increase the max lateness. Pf. Let be the lateness before the swap, and let ' be it afterwards. n ' k = k for all k  i, j n ' i  i n If job j is late: ij ij before swap after swap f' j fifi inversion

13 Minimizing Lateness: Analysis of Greedy Algorithm Theorem. Greedy schedule S is optimal. Pf. Define S* to be an optimal schedule that has the fewest number of inversions, and let's see what happens. n Can assume S* has no idle time. n If S* has no inversions, then S = S*. n If S* has an inversion, let i-j be an adjacent inversion. – swapping i and j does not increase the maximum lateness and strictly decreases the number of inversions – this contradicts definition of S* ▪

14 Greedy Analysis Strategies Greedy algorithm stays ahead. Show that after each step of the greedy algorithm, its solution is at least as good as any other algorithm's. Exchange argument. Gradually transform any solution to the one found by the greedy algorithm without hurting its quality. Structural. Discover a simple "structural" bound asserting that every possible solution must have a certain value. Then show that your algorithm always achieves this bound.

15 Optimal Caching 9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne

16 Optimal Offline Caching Caching. n Cache with capacity to store k items. n Sequence of m item requests d 1, d 2, …, d m. n Cache hit: item already in cache when requested. n Cache miss: item not already in cache when requested: must bring requested item into cache, and evict some existing item, if full. Goal. Eviction schedule that minimizes number of cache misses. Ex: k = 2, initial cache = ab, requests: a, b, c, b, c, a, a, b. Optimal eviction schedule: 2 cache misses. ab ab cb cb cb ab a b c b c a aba abb cache requests

17 Suggestions for greedy approaches?

18 Optimal Offline Caching: Farthest-In-Future Farthest-in-future. Evict item in the cache that is not requested until farthest in the future. Theorem. [Bellady, 1960s] FF is optimal eviction schedule. Pf. Algorithm and theorem are intuitive; proof is subtle. ab g a b c e d a b b a c d e a f a d e f g h... current cache:cdef future queries: cache miss eject this one

19 Reduced Eviction Schedules Def. A reduced schedule is a schedule that only inserts an item into the cache in a step in which that item is requested. Intuition. Can transform an unreduced schedule into a reduced one with no more cache misses. (Idea is to defer unreduced requests. Proof will be an exercise.) ax an unreduced schedule c adc adb acb axb acb abc abc a c d a b c a a ab a reduced schedule c abc adc adc adb acb acb acb a c d a b c a a abc a abc a

20 Farthest-In-Future: Analysis Theorem. FF is optimal eviction algorithm. Pf. (by induction on number or requests j) Let S = opt. reduced schedule that satisfies invariant through j requests. We produce S' that satisfies invariant after j+1 requests. n Consider (j+1) st request d = d j+1. n Since S and S FF have agreed up until now, they have the same cache contents before request j+1. n Case 1: (d is already in the cache). S' = S satisfies invariant. n Case 2: (d is not in the cache and S and S FF evict the same element). S' = S satisfies invariant. Invariant: There exists an optimal reduced schedule S that makes the same eviction schedule as S FF through the first j+1 requests.

21 j Farthest-In-Future: Analysis Pf. (continued) n Case 3: (d is not in the cache; S FF evicts e; S evicts f  e). – begin construction of S' from S by evicting e instead of f – now S' agrees with S FF on first j+1 requests; we show that having element f in cache is no worse than having element e samef fee SS' j samed fde SS' j+1

22 Farthest-In-Future: Analysis Let j' be the first time after j+1 that S and S' take a different action, and let g be item requested at time j'. n Case 3a: g = e. Can't happen with Farthest-In-Future since there must be a request for f before e. n Case 3b: g = f. Element f can't be in cache of S, so let e' be the element that S evicts. – if e' = e, S' accesses f from cache; now S and S' have same cache – if e'  e, S' evicts e' and brings e into the cache; now S and S' have the same cache same e f SS' j' Note: S' is no longer reduced, but can be transformed into a reduced schedule that agrees with S FF through step j+1 must involve e or f (or both)

23 Farthest-In-Future: Analysis Let j' be the first time after j+1 that S and S' take a different action, and let g be item requested at time j'. n Case 3c: g  e, f. S must evict e. Make S' evict f; now S and S' have the same cache. ▪ same g g SS' j' otherwise S' would take the same action same e f SS' j' must involve e or f (or both)

24 Caching Perspective Online vs. offline algorithms. n Offline: full sequence of requests is known a priori. n Online (reality): requests are not known in advance. n Caching is among most fundamental online problems in CS. LIFO. Evict page brought in most recently. LRU. Evict page whose most recent access was earliest. Theorem. FF is optimal offline eviction algorithm. n Provides basis for understanding and analyzing online algorithms. n LRU is k-competitive. [Section 13.8] n LIFO is arbitrarily bad. FF with direction of time reversed!


Download ppt "9/8/10 A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne Adam Smith Algorithm Design and Analysis L ECTURE 6 Greedy Algorithms."

Similar presentations


Ads by Google