This is an old revision of the document!


6.1. Weighted Interval Scheduling: A Recursive Procedure


Chapter Six is concerned about ways of solving problems using Dynamic Programming techniques. When solving problems with Dynamic Programming, one implicitly explores the space of all possible solutions, by carefully decomposing them into several subproblems, and then building up correct solutions to larger and larger subproblems. With the Weighted interval scheduling problem, is a generalization of the Interval scheduling problem in which each interval has its own value(or weight), and our goal is to find a set of intervals of maximum value(or weight). It is different from the Interval scheduling problem we solved using greedy algorithms in that our goal for the Interval scheduling problem was to find a the biggest set of non-overlapping intervals which constituted our optimal solution. Here, we are concerned about the weight of the intervals, not matter how big our solution set is. Thus in many occasions, greedy algorithms don't work for the weighted interval scheduling.


Designing a Recursive Algorithm

The Setting

We have n requests labeled 1,…,n

Each request i has a start time si and a finish time fi

Each interval i has a value(weight), vi

Two intervals are compatible if they don't overlap

Our Goal is to select a subset S ⊆ {1,…,n} of mutually compatible intervals so as to maximize the sum of the values of the selected intervals, ∑i ∈ S vi

If we suppose that the requests are coming in order of non-decreasing finish time: f1≤f2,…,fn,:
A request i comes before a request j if i<j.

We define p(j) for an interval j as the largest index i<j such that the intervals i and j are disjoint.

So i is the leftmost interval that ends before j begins.(We know we are considering jobs in a left to right order where the intervals are increasing from left to right.)

We define p(j) = 0 if no request i<j is disjoint from j.

courses/cs211/winter2012/journals/jeanpaul/chaptersixsectioni.1332892319.txt.gz · Last modified: 2012/03/27 23:51 by mugabej
CC Attribution-Noncommercial-Share Alike 4.0 International
Driven by DokuWiki Recent changes RSS feed Valid CSS Valid XHTML 1.0