Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Exercise (Ambitious Student Revisited) Recall the Ambitious Student problem from the lecture: Given intervals L1=[s1,e1),,Ln= [sn,en), compute the largest number k such that there is

image text in transcribed

Exercise (Ambitious Student Revisited) Recall the Ambitious Student problem from the lecture: Given intervals L1=[s1,e1),,Ln= [sn,en), compute the largest number k such that there is a conflict-free set of k intervals Li1,,Lik. In the lecture you have seen that this problem can be solved by a greedy algorithm using a carefully chosen strategy. In this exercise, we will investigate further strategies; your task is to decide for each one whether it leads to a correct greedy algorithm, or whether the strategy is wrong. In the first case, give a short correctness proof (you don't have to analyze the running time). In the second case, give a counterexample. a. Pick the interval Li that ends last, discard all intervals that conflict with Li and recurse. b. Pick the interval Li that starts first, discard all intervals that conflict with Li and recurse. c. Pick the interval Li that starts last, discard all intervals that conflict with Li and recurse. d. Pick the interval Li that conflicts with the fewest other intervals, discards all intervals that conflict with Li and recurse. e. If no intervals conflict, pick them all. Otherwise, discard the interval with the longest duration and recurse. f. If no intervals conflict, pick them all. Otherwise, discard the interval that conflicts with the most other intervals and recurse. g. Let Li be the interval with the earliest start time, and let Lj be the interval with the second earliest start time. - If LiLj=, pick Li and recurse on everything but Li. - If LjLi, discard Li and recurse. - Otherwise, discard Lj and recurse. h. If any interval Li completely contains another interval, discard Li and recurse. Otherwise, pick the interval Lj that ends last, discard all intervals that conflict with Lj and recurse. Exercise (Ambitious Student Revisited) Recall the Ambitious Student problem from the lecture: Given intervals L1=[s1,e1),,Ln= [sn,en), compute the largest number k such that there is a conflict-free set of k intervals Li1,,Lik. In the lecture you have seen that this problem can be solved by a greedy algorithm using a carefully chosen strategy. In this exercise, we will investigate further strategies; your task is to decide for each one whether it leads to a correct greedy algorithm, or whether the strategy is wrong. In the first case, give a short correctness proof (you don't have to analyze the running time). In the second case, give a counterexample. a. Pick the interval Li that ends last, discard all intervals that conflict with Li and recurse. b. Pick the interval Li that starts first, discard all intervals that conflict with Li and recurse. c. Pick the interval Li that starts last, discard all intervals that conflict with Li and recurse. d. Pick the interval Li that conflicts with the fewest other intervals, discards all intervals that conflict with Li and recurse. e. If no intervals conflict, pick them all. Otherwise, discard the interval with the longest duration and recurse. f. If no intervals conflict, pick them all. Otherwise, discard the interval that conflicts with the most other intervals and recurse. g. Let Li be the interval with the earliest start time, and let Lj be the interval with the second earliest start time. - If LiLj=, pick Li and recurse on everything but Li. - If LjLi, discard Li and recurse. - Otherwise, discard Lj and recurse. h. If any interval Li completely contains another interval, discard Li and recurse. Otherwise, pick the interval Lj that ends last, discard all intervals that conflict with Lj and recurse

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Databases Technologies And Applications

Authors: Zongmin Ma

1st Edition

1599041219, 978-1599041216

More Books

Students also viewed these Databases questions

Question

Describe how projective tests are used.

Answered: 1 week ago

Question

Describe various problems with traditional tools for Data Analysis?

Answered: 1 week ago