Presentation is loading. Please wait.

Presentation is loading. Please wait.

Greedy Algorithms – Chapter 5

Similar presentations


Presentation on theme: "Greedy Algorithms – Chapter 5"— Presentation transcript:

1 Greedy Algorithms – Chapter 5

2 Interval Scheduling Interval scheduling.
Job j starts at sj and finishes at fj. Two jobs compatible if they don't overlap. Goal: find maximum subset of mutually compatible jobs. a Activity selection = interval scheduling OPT = B, E, H Note: smallest job (C) is not in any optimal solution, job that starts first (A) is not in any optimal solution. b c d e f g h Time 1 2 3 4 5 6 7 8 9 10 11

3 Interval Scheduling: Greedy Algorithms
Greedy template. Consider jobs in some order. Take each job provided it's compatible with the ones already taken. [Earliest start time] Consider jobs in ascending order of start time sj. [Earliest finish time] Consider jobs in ascending order of finish time fj. [Shortest interval] Consider jobs in ascending order of interval length fj - sj. [Fewest conflicts] For each job, count the number of conflicting jobs cj. Schedule in ascending order of conflicts cj.

4 Interval Scheduling: Greedy Algorithms
Greedy template. Consider jobs in some order. Take each job provided it's compatible with the ones already taken. breaks earliest start time breaks shortest interval breaks fewest conflicts

5 Interval Scheduling: Greedy Algorithm
Greedy algorithm. Consider jobs in increasing order of finish time. Take each job provided it's compatible with the ones already taken. Implementation. O(n log n). Remember job j* that was added last to A. Job j is compatible with A if sj  fj*. Sort jobs by finish times so that f1  f2  ...  fn. A   for j = 1 to n { if (job j compatible with A) A  A  {j} } return A jobs selected

6 Interval Scheduling: Analysis
Theorem. Greedy algorithm is optimal. Pf. (by contradiction) Assume greedy is not optimal, and let's see what happens. Let i1, i2, ... ik denote set of jobs selected by greedy. Let j1, j2, ... jm denote set of jobs in the optimal solution with i1 = j1, i2 = j2, ..., ir = jr for the largest possible value of r. job ir+1 finishes before jr+1 Greedy: i1 i1 ir ir+1 OPT: j1 j2 jr jr+1 . . . why not replace job jr+1 with job ir+1?

7 Interval Scheduling: Analysis
Theorem. Greedy algorithm is optimal. Pf. (by contradiction) Assume greedy is not optimal, and let's see what happens. Let i1, i2, ... ik denote set of jobs selected by greedy. Let j1, j2, ... jm denote set of jobs in the optimal solution with i1 = j1, i2 = j2, ..., ir = jr for the largest possible value of r. job ir+1 finishes before jr+1 Greedy: i1 i1 ir ir+1 OPT: j1 j2 jr ir+1 . . . solution still feasible and optimal, but contradicts maximality of r.

8 4.1 Interval Partitioning

9 Interval Partitioning
Lecture j starts at sj and finishes at fj. Goal: find minimum number of classrooms to schedule all lectures so that no two occur at the same time in the same room. Ex: This schedule uses 4 classrooms to schedule 10 lectures. e j c d g b h a f i 9 9:30 10 10:30 11 11:30 12 12:30 1 1:30 2 2:30 3 3:30 4 4:30 Time

10 Interval Partitioning
Lecture j starts at sj and finishes at fj. Goal: find minimum number of classrooms to schedule all lectures so that no two occur at the same time in the same room. Ex: This schedule uses only 3. c d f j b g i a e h 9 9:30 10 10:30 11 11:30 12 12:30 1 1:30 2 2:30 3 3:30 4 4:30 Time

11 Interval Partitioning: Lower Bound on Optimal Solution
Def. The depth of a set of open intervals is the maximum number that contain any given time. Key observation. Number of classrooms needed  depth. Ex: Depth of schedule below = 3  schedule below is optimal. Q. Does there always exist a schedule equal to depth of intervals? a, b, c all contain 9:30 c d f j b g i a e h 9 9:30 10 10:30 11 11:30 12 12:30 1 1:30 2 2:30 3 3:30 4 4:30 Time

12 Interval Partitioning: Greedy Algorithm
Greedy algorithm. Consider lectures in increasing order of start time: assign lecture to any compatible classroom. Implementation. O(n log n). For each classroom k, maintain the finish time of the last job added. Keep the classrooms in a priority queue. Sort intervals by starting time so that s1  s2  ...  sn. d  0 for j = 1 to n { if (lecture j is compatible with some classroom k) schedule lecture j in classroom k else allocate a new classroom d + 1 schedule lecture j in classroom d + 1 d  d + 1 } number of allocated classrooms

13 Interval Partitioning: Greedy Analysis
Observation. Greedy algorithm never schedules two incompatible lectures in the same classroom. Theorem. Greedy algorithm is optimal. Pf. Let d = number of classrooms that the greedy algorithm allocates. Classroom d is opened because we needed to schedule a job, say j, that is incompatible with all d-1 other classrooms. Since we sorted by start time, all these incompatibilities are caused by lectures that start no later than sj. Thus, we have d lectures overlapping at time sj + . Key observation  all schedules use  d classrooms. ▪

14 Minimum Spanning Tree Spanning tree: A set of edges of a graph that forms a tree.

15 Minimum Spanning Trees

16 Minimum Spanning Trees

17 Minimum Spanning Trees

18 Kruskal’s Algorithm Example

19 Kruskal’s Algorithm Example

20 Kruskal’s Algorithm Example

21 Kruskal’s Algorithm Example

22 Kruskal’s Algorithm Example

23 Kruskal’s Algorithm Example

24 Kruskal’s Algorithm Example

25 Kruskal’s Algorithm Example

26 Kruskal’s Algorithm Example

27 Kruskal’s Algorithm Example

28 Kruskal’s Algorithm Example

29 Kruskal’s Algorithm Example

30 Kruskal’s Algorithm Example

31 Kruskal’s Algorithm Example

32 Minimum Spanning Trees

33 Minimum Spanning Trees

34 Kruskal’s algorithm

35 Kruskal’s algorithm

36 Kruskal’s algorithm

37 Application of MST: an example
In the design of electronic circuitry, it is often necessary to make a set of pins electrically equivalent by wiring them together. To interconnect n pins, we can use n-1 wires, each connecting two pins. We want to minimize the total length of the wires. Minimum Spanning Trees can be used to model this problem.

38 Electronic Circuits:

39 Electronic Circuits:

40 Coding symbols of an alphabet
Block coding: Ascii code is an example. Each symbol will be coded with 8 bits. Is this efficient?

41 valid vs. invalid code Coding scheme should be such that the receiver of a stream of bits should be able to reconstruct the original string. Not valid: A  B  C  and D  100 Encoded message: is it C or is it BA?

42 The algorithm can be implemented in O(n log n) time if there are n symbols.
Used in almost all compression algorithms such as zip, jpeg etc.

43


Download ppt "Greedy Algorithms – Chapter 5"

Similar presentations


Ads by Google