Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectionii [2012/02/26 20:20] – [The Problem] mugabej | courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectionii [2012/02/26 22:13] (current) – [Designing the algorithm] mugabej | ||
---|---|---|---|
Line 13: | Line 13: | ||
* //l < | * //l < | ||
* A request is late if it misses the deadline --> | * A request is late if it misses the deadline --> | ||
- | >>>>> | + | \\ |
+ | --> Goal of the algorithm: Minimize the //maximum lateness, L = max< | ||
+ | \\ | ||
+ | ==== Designing the algorithm ==== | ||
+ | |||
+ | * After quite a bit of analysis, we find that the optimal solution to this problem is using a method called //Earliest Deadline First//: | ||
+ | * Thus jobs are scheduled in the order d< | ||
+ | * s = start time for all of the jobs | ||
+ | * //f// = finishing time of the last scheduled job | ||
+ | \\ | ||
+ | === Algorithm === | ||
+ | |||
+ | >>>>>>>>>> | ||
+ | >>>>>>>>>> | ||
+ | >>>>>>>>>> | ||
+ | >>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>> | ||
+ | >>>>>>>>>> | ||
+ | >>>>>>>>>> | ||
+ | \\ | ||
+ | === Algorithm Analysis === | ||
+ | |||
+ | * //Exchange Argument//: Gradually modifying an optimal schedule, | ||
+ | * There is an // | ||
+ | * The greedy algorithm has no idle time and by definition, | ||
+ | * All schedules with no inversions and no idle time have the same maximum lateness. | ||
+ | * There is an optimal schedule that has no inversions and no idle time. | ||
+ | * As a consequence, | ||
+ | |||
+ | --> For proofs of the above claims,see the book of the course | ||
+ | \\ | ||
+ | \\ | ||
+ | I give this section an 8/10 for being brief and concise in its explanation of the material. |