Skip to content

Commit

Permalink
Create activityselection.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
sohamm7 authored Oct 1, 2021
1 parent c0b8a66 commit 3431fc7
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions activityselection.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
// C++ program for activity selection problem.
// The following implementation assumes that the activities
// are already sorted according to their finish time
#include <bits/stdc++.h>
using namespace std;

// Prints a maximum set of activities that can be done by a single
// person, one at a time.
// n --> Total number of activities
// s[] --> An array that contains start time of all activities
// f[] --> An array that contains finish time of all activities
void printMaxActivities(int s[], int f[], int n)
{
int i, j;

cout <<"Following activities are selected "<< endl;

// The first activity always gets selected
i = 0;
cout <<" "<< i;

// Consider rest of the activities
for (j = 1; j < n; j++)
{
// If this activity has start time greater than or
// equal to the finish time of previously selected
// activity, then select it
if (s[j] >= f[i])
{
cout <<" " << j;
i = j;
}
}
}

// driver program to test above function
int main()
{
int s[] = {1, 3, 0, 5, 8, 5};
int f[] = {2, 4, 6, 7, 9, 9};
int n = sizeof(s)/sizeof(s[0]);
printMaxActivities(s, f, n);
return 0;
}
//this code contributed by shivanisinghss2110

0 comments on commit 3431fc7

Please sign in to comment.