-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGreedyJobScheduling.cpp
82 lines (68 loc) · 3.01 KB
/
GreedyJobScheduling.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Program to find the maximum profit job sequence from a
// given array of jobs with deadlines and profits
#include <algorithm>
#include <iostream>
using namespace std;
/*———————————————————————————————————————————————————————————————————————————*/
// A structure to represent a job
struct Job {
char id; // Job Id
int deadline; // Deadline of job
int profit; // Profit if job is over before or on deadline
};
/*———————————————————————————————————————————————————————————————————————————*/
// This function is used for sorting all jobs according to profit
bool comparison(Job a, Job b){
return (a.profit > b.profit);
}
/*———————————————————————————————————————————————————————————————————————————*/
// Returns minimum number of platforms required
void printJobScheduling(Job arr[], int n){
// Sort all jobs according to decreasing order of profit
sort(arr, arr + n, comparison);
int result[n]; // To store result (Sequence of jobs)
bool slot[n]; // To keep track of free time slots
// Initialize all slots to be free
for (int i = 0; i < n; i++)
slot[i] = false;
// Iterate through all given jobs
for (int i = 0; i < n; i++) {
// Find a free slot for this job (Note that we start from the last possible slot)
for (int j = min(n, arr[i].deadline) - 1; j >= 0; j--) {
// Free slot found
if (slot[j] == false) {
result[j] = i; // Add this job to result
slot[j] = true; // Make this slot occupied
break;
}
}
}
// Print the result
for (int i = 0; i < n; i++){
if (slot[i]){
cout << "Job ID : " << arr[result[i]].id << " ";
cout << "deadline : " << arr[result[i]].deadline << " ";
cout << "profit : " << arr[result[i]].profit << " \n";
}
}
}
/*———————————————————————————————————————————————————————————————————————————*/
// Driver code
int main(){
int n;
cout << "Enter the number of Jobs : ";
cin >> n;
Job arr[n];
for (int i = 0; i < n; i++){
cout << "\nEnter the Job ID : ";
cin >> arr[i].id;
cout << "Enter the deadline : ";
cin >> arr[i].deadline;
cout << "Enter the profit : ";
cin >> arr[i].profit;
}
cout << "\n\nMaximum Profit Sequence of Jobs \n\n";
// Function call
printJobScheduling(arr, n);
return 0;
}