forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Activity_Selection.cpp
53 lines (49 loc) · 1.41 KB
/
Activity_Selection.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
The problem statement for Activity Selection is that "Given a set of n
activities with their start and finish times, we need to select maximum number
of non-conflicting activities that can be performed by a single person, given
that the person can handle only one activity at a time." The Activity Selection
problem follows a Greedy approach.
*/
#include <iostream>
using namespace std;
// Function to compute the activities to be chosen
void Activity_Selection(int start[], int finish[], int n)
{
cout << "Following activities are selected" << endl;
// Select the first activity
int i = 0;
cout<<i<<" ";
// if start time of current activity j is greater than or equal to previous
// activity chosen, select activity j
for (int j = 1; j < n; j++)
{
if (start[j] >= finish[i])
{
cout << j << " ";
i = j;
}
}
}
// Driver Function
int main()
{
// The array of n elements where start[i] denotes starting time of ith activity
int start[] = {1, 3, 1, 5, 6, 8};
// The array of n elements where finish[i] denotes finishing time of ith activity
int finish[] = {2, 6, 6, 7, 8, 10};
int n = sizeof(start) / sizeof(start[0]);
// Call to activities function
Activity_Selection(start, finish, n);
return 0;
}
/*
Input:
Start
1 3 1 5 6 8
Finish
2 6 6 7 8 10
Output:
Following activities are selected
0 1 4 5
*/