-
Notifications
You must be signed in to change notification settings - Fork 0
/
Schrage.cpp
54 lines (37 loc) · 1.02 KB
/
Schrage.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
#include <iostream>
#include <algorithm>
#include "Task.h"
#include "maxHeap.h"
#include "minHeap.h"
#include "Schrage.h"
using namespace std;
result schrage(minHeap allTasks, maxHeap readyTasks) {
int t = 0;
int Cmax = 0;
Task tempTask;
result Return;
vector<int> taskOrder;
// przejscie przez wszystkie zadania
while (!allTasks.isEmpty() || !readyTasks.isEmpty()) {
// przeniesienie zadan dostepnych w danym czasie do kolejki zadan gotowych
while (!allTasks.isEmpty() && (allTasks.top().R <= t) ) {
readyTasks.Insert(allTasks.top());
allTasks.pop();
}
// jezeli nie dodano zadania do kolejki to od razu przenosimy sie
// do chwili gdzie sie cos dzieje
if (readyTasks.isEmpty())
t = allTasks.top().R;
else {
// bierzemy zadanie z wierzchu kopca czyli to o najwiekszym Q
tempTask = readyTasks.top();
readyTasks.pop();
taskOrder.push_back(tempTask.ID);
t += tempTask.P;
Cmax = max(Cmax, t + tempTask.Q);
}
}
Return.Cmax = Cmax;
Return.taskOrder = taskOrder;
return Return;
}