-
Notifications
You must be signed in to change notification settings - Fork 19.9k
/
Copy pathJobSchedulingWithDeadline.java
88 lines (78 loc) · 3.32 KB
/
JobSchedulingWithDeadline.java
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
83
84
85
86
87
88
package com.thealgorithms.scheduling;
import java.util.Arrays;
import java.util.Comparator;
/**
* A class that implements a job scheduling algorithm to maximize profit
* while adhering to job deadlines and arrival times.
*
* This class provides functionality to schedule jobs based on their profit,
* arrival time, and deadlines to ensure that the maximum number of jobs is completed
* within the given timeframe. It sorts the jobs in decreasing order of profit
* and attempts to assign them to the latest possible time slots.
*/
public final class JobSchedulingWithDeadline {
private JobSchedulingWithDeadline() {
}
/**
* Represents a job with an ID, arrival time, deadline, and profit.
*
* Each job has a unique identifier, an arrival time (when it becomes available for scheduling),
* a deadline by which it must be completed, and a profit associated with completing the job.
*/
static class Job {
int jobId;
int arrivalTime;
int deadline;
int profit;
/**
* Constructs a Job instance with the specified job ID, arrival time, deadline, and profit.
*
* @param jobId Unique identifier for the job
* @param arrivalTime Time when the job becomes available for scheduling
* @param deadline Deadline for completing the job
* @param profit Profit earned upon completing the job
*/
Job(int jobId, int arrivalTime, int deadline, int profit) {
this.jobId = jobId;
this.arrivalTime = arrivalTime;
this.deadline = deadline;
this.profit = profit;
}
}
/**
* Schedules jobs to maximize profit while respecting their deadlines and arrival times.
*
* This method sorts the jobs in descending order of profit and attempts
* to allocate them to time slots that are before or on their deadlines,
* provided they have arrived. The function returns an array where the first element
* is the total number of jobs scheduled and the second element is the total profit earned.
*
* @param jobs An array of Job objects, each representing a job with an ID, arrival time,
* deadline, and profit.
* @return An array of two integers: the first element is the count of jobs
* that were successfully scheduled, and the second element is the
* total profit earned from those jobs.
*/
public static int[] jobSequencingWithDeadlines(Job[] jobs) {
Arrays.sort(jobs, Comparator.comparingInt(job -> - job.profit));
int maxDeadline = Arrays.stream(jobs).mapToInt(job -> job.deadline).max().orElse(0);
int[] timeSlots = new int[maxDeadline];
Arrays.fill(timeSlots, -1);
int count = 0;
int maxProfit = 0;
// Schedule the jobs
for (Job job : jobs) {
if (job.arrivalTime <= job.deadline) {
for (int i = Math.min(job.deadline - 1, maxDeadline - 1); i >= job.arrivalTime - 1; i--) {
if (timeSlots[i] == -1) {
timeSlots[i] = job.jobId;
count++;
maxProfit += job.profit;
break;
}
}
}
}
return new int[] {count, maxProfit};
}
}