Starting from:

$24.99

CS29003 Lab 6-Greedy Algorithm Solution


Important Instructions
1. List of Input Files: input.txt
2. Output Files to be submitted: ROLLNO GroupNO A6.c/.cpp
3. Files must be read using file handling APIs of C/C++. Reading through input redirection isn’t allowed.
4. You are to stick to the file input output formats strictly as per the instructions.
5. Submission through .zip files are not allowed.
6. Write your name and roll number at the beginning of your program.
7. Do not use any global variable unless you are explicitly instructed so.
8. Use proper indentation in your code.
10. There will be part marking.
Problem Statement
See Figure 1 for an illustration. Each line denotes the interval specified by a person. In the leftmost example, there are three people with time windows of [0,10], [5,15] and [10,15], respectively. To maximize the minimum achievable gap, their visits need to be scheduled at times [0 : 00,7 : 30,15 : 00] as denoted by the stars, which gives a minimum gap of 7 : 30 minutes (read 7 minutes 30 seconds). You can verify that you cannot get a larger gap.

Figure 1: Example Scenarios (answers are given in mins:secs format).
1. Compute an order for the visits that respects these time windows given the constraint of maximising the minimum achievable time gap.
2. Print the answer split into minutes and seconds, rounded to the closest second.
1. Hint 1: Try to draw parallels with the activity scheduling problem.
2. Hint 2: For each specific visit order, we want to know the largest possible visit window. Suppose we use a certain window length L. We can greedily check whether this L is feasible by forcing the first person to visit as soon as possible and the subsequent persons to visit in max(a[that person], previous person’s arrival time + L).
Read the input file as follows
1. The first line contains the number of persons n (assume 2≤ n ≤ 8)
2. Read ai, bi respectively for each person. n
a1 b1 a2 b2 ...so on
Sample 1: input file
File: input1.txt
4
0
8
2
4
3
9
10
20

Sample 2: input file
File: input2.txt
3
0
12
0
2
13
50

You have to print the followings exactly in the same way as shown in the sample output file
1. The first line contains the time gap split into minutes and seconds.
2. The second line prints the order for the visit of the persons.
Sample 1: output file
File: output1.txt
4:00
0 1 2 3

Sample 2: output file
File: output2.txt
12:00
1 0 2
Notes
1. Make sure to read inputs from a file named “input1.txt”. At the time of evaluation, the input data might be different from the one given here.
2. You need not to submit “output1.txt”, but your code should write the output in the given format in a file named “output1.txt”.

More products