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 19:46] – [The Problem] mugabej | courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectionii [2012/02/26 22:13] (current) – [Designing the algorithm] mugabej | ||
---|---|---|---|
Line 8: | Line 8: | ||
* Each accepted request is assigned an interval of length //t < | * Each accepted request is assigned an interval of length //t < | ||
* Let S = the overall start time | * Let S = the overall start time | ||
- | * Each request //i// is assigned an interval of time of length //t < | + | * Each request //i// is assigned an interval of time of length //t < |
- | * | + | * The algorithm must always determine the start time |
+ | * Lateness, //l < | ||
+ | * //l < | ||
+ | * 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. |