Skip to content
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,7 @@
* scheduling
* [FCFSScheduling](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/scheduling/FCFSScheduling.java)
* [HighestResponseRatioNextScheduling](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/scheduling/HighestResponseRatioNextScheduling.java)
* [JobSchedulingWithDeadline](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/scheduling/JobSchedulingWithDeadline.java)
* [MLFQScheduler](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/scheduling/MLFQScheduler.java)
* [PreemptivePriorityScheduling](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/scheduling/PreemptivePriorityScheduling.java)
* [RRScheduling](https://github.com/TheAlgorithms/Java/blob/master/src/main/java/com/thealgorithms/scheduling/RRScheduling.java)
Expand Down Expand Up @@ -941,6 +942,7 @@
* scheduling
* [FCFSSchedulingTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/scheduling/FCFSSchedulingTest.java)
* [HighestResponseRatioNextSchedulingTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/scheduling/HighestResponseRatioNextSchedulingTest.java)
* [JobSchedulingWithDeadlineTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/scheduling/JobSchedulingWithDeadlineTest.java)
* [MLFQSchedulerTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/scheduling/MLFQSchedulerTest.java)
* [PreemptivePrioritySchedulingTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/scheduling/PreemptivePrioritySchedulingTest.java)
* [RRSchedulingTest](https://github.com/TheAlgorithms/Java/blob/master/src/test/java/com/thealgorithms/scheduling/RRSchedulingTest.java)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
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.
*
* This class provides functionality to schedule jobs based on their profit
* 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, deadline, and profit.
*
* Each job has a unique identifier, a deadline by which it must be completed,
* and a profit associated with completing the job.
*/
static class Job {
int jobId;
int deadline;
int profit;

/**
* Constructs a Job instance with the specified job ID, deadline, and profit.
*
* @param jobId Unique identifier for the job
* @param deadline Deadline for completing the job
* @param profit Profit earned upon completing the job
*/
Job(int jobId, int deadline, int profit) {
this.jobId = jobId;
this.deadline = deadline;
this.profit = profit;
}
}

/**
* Schedules jobs to maximize profit while respecting their deadlines.
*
* 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.
* 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,
* 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) {
for (int i = job.deadline - 1; i >= 0; i--) {
if (timeSlots[i] == -1) {
timeSlots[i] = job.jobId;
count++;
maxProfit += job.profit;
break;
}
}
}

return new int[] {count, maxProfit};
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
package com.thealgorithms.scheduling;

import static org.junit.jupiter.api.Assertions.assertArrayEquals;

import org.junit.jupiter.api.Test;

class JobSchedulingWithDeadlineTest {

@Test
void testJobSequencingWithDeadlines1() {
JobSchedulingWithDeadline.Job[] jobs = {new JobSchedulingWithDeadline.Job(1, 4, 20), new JobSchedulingWithDeadline.Job(2, 1, 10), new JobSchedulingWithDeadline.Job(3, 1, 40), new JobSchedulingWithDeadline.Job(4, 1, 30)};
int[] result = JobSchedulingWithDeadline.jobSequencingWithDeadlines(jobs);
assertArrayEquals(new int[] {2, 60}, result);
}

@Test
void testJobSequencingWithDeadlines2() {
JobSchedulingWithDeadline.Job[] jobs = {new JobSchedulingWithDeadline.Job(1, 2, 100), new JobSchedulingWithDeadline.Job(2, 1, 19), new JobSchedulingWithDeadline.Job(3, 2, 27), new JobSchedulingWithDeadline.Job(4, 1, 25), new JobSchedulingWithDeadline.Job(5, 1, 15)};
int[] result = JobSchedulingWithDeadline.jobSequencingWithDeadlines(jobs);
assertArrayEquals(new int[] {2, 127}, result);
}

@Test
void testJobSequencingWithDeadlinesNoJobs() {
JobSchedulingWithDeadline.Job[] jobs = {};
int[] result = JobSchedulingWithDeadline.jobSequencingWithDeadlines(jobs);
assertArrayEquals(new int[] {0, 0}, result);
}

@Test
void testJobSequencingWithDeadlinesSingleJob() {
JobSchedulingWithDeadline.Job[] jobs = {new JobSchedulingWithDeadline.Job(1, 1, 50)};
int[] result = JobSchedulingWithDeadline.jobSequencingWithDeadlines(jobs);
assertArrayEquals(new int[] {1, 50}, result);
}
}