Job Sequencing Problem

You are given a N x 2 2-D array 'Jobs' of 'N' jobs where Jobs[i][0] denote the deadline of i-th job and Jobs[i][1] denotes the profit associated with i-th job.

You will make a certain profit if you complete the job within the deadline associated with it. Each job takes 1 unit of time to be completed, and you can schedule only one job at a particular time.

Your task is to find out the maximum profit that you can make.

Note :
If a particular job has a deadline 'x', it means that it needs to be completed at any time interval before 'x'.
For Example :
If jobs is - 

[ 2 40 ]
[ 2 20 ]
[1 10 ]

So, there are a total of 3 jobs. The first job has a deadline of 2, and the profit associated with it is 40. The second job has a deadline of 2, and the profit is 20. Similarly, the third job has a deadline of 1, and the profit is 10. 
So, it’s optimal to complete the first and second jobs to earn a profit of 60. One of the jobs can be completed in the first minute, and the second job can be completed in the next minute. So, the total profit = 40 + 20 = 60, and the number of completed jobs is 2. Since the third job can’t be completed within the deadline, so we do not earn any profit.
Follow Up :
Can you solve this in (N*log(N)) time complexity?
Input Format :
The first line contains an integer 'T', which denotes the number of test cases or queries to be run. Then, the T test cases follow.

The first line of each test case contains a single integer N, denoting the number of elements of the array “jobs”.

The second line of each test case contains 'N' space-separated integers denoting the deadline assigned to each job.

The third line of each test case contains 'N' space-separated integers denoting the profit associated with each job.
Output Format :
For each test case, print the maximum profit that can be earned. 

Output for each test case will be printed in a separate line.
Note :
You do not need to print anything. It has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 100
1 <= N <= 5000
1 <= jobs[i][0] <= 3000
1 <= jobs[i][1] <= 10^5

Time limit: 1 sec
CodingNinjas
author
2y
Greedy Approach

The idea here is to follow a greedy approach that we should complete the job with the maximum profit in the nearest available slot within its deadline. So, we can sort the jobs in the d...read more

CodingNinjas
author
2y
Using Set

In the above approach, for each index in the jobs array, we may have to traverse a boolean array of slots of size maxDeadline. However, we can optimize the above approach by using a set and applying a binary search on the elements of the set. So, we store the elements from maxDeadline to 1 in the set. We traverse the jobs array, and for each job, we find the nearest element present in the set that is less than or equal to the deadline of that job. If such an element exists in the set, then we add the profit to the answer and remove this element from the set.

 

Algorithm

 

  • Sort the jobs array in the descending order of the profit associated with each job. We can write our own comparator function to achieve this.
  • Create two variables, maxProfit, and numberOfJobs. Initialize both of them to 0.
  • Create a variable maxDeadline and find the maximum available deadline among all the jobs.
  • Create a set named slots that store the elements in decreasing order. Insert all the elements from maxDeadline to 1 into the set.
  • Run a loop from i = 0 to N and do:
    • If the set is empty or jobs[i].deadline is less than the last element of the set, then we ignore this job as it can’t be completed and continue in the loop.
    • Apply binary search on the set and find the nearest available slot that is less than or equal to jobs[i].deadline. Let’s name this as availableSlot.
    • maxProfit = maxProfit + jobs[i].profit
    • Increment numberOfJobs by 1.
    • Remove the availableSlot from the set.
  • Return the maxProfit and numberOfJobs.

 

Note that, there is no in-built lower_bound or upper_bound function associated with the set data structure in python. So, we can implement the above approach in python by using a segment tree.

Space Complexity: OtherExplanation:

O(maxDeadline), where ‘maxDeadline’ is the maximum available deadline among all the jobs.

 

The set has a size of ‘maxDeadline’.

Time Complexity: OtherExplanation:

O(N *log max(N, maxDeadline)), where ‘N’ denotes the number of elements of the array “jobs,” and ‘maxDeadline’ is the maximum available deadline among all the jobs.

 

As for every index of the array “jobs”, we are applying binary search on a set of size maxDeadline. We are also sorting the “jobs” array of size N according to the decreasing order of profit. Hence, the time complexity will be O(N * log max(N, maxDeadline)).


Java (SE 1.8)
/*

Time Complexity : O(N *log(max(N, maxDeadline)))
Space Complexity : O(maxDeadline)

Where 'N' is size of the array "jobs" and
'maxDeadline' is the maximum among all the deadlines.
*/

import java.util.Arrays;
import java.util.Comparator;
import java.util.TreeSet;

public class Solution
{
// Sort the jobs in the decreasing order of their profit.
public static int jobScheduling(int[][] jobs)
{
Arrays.sort(jobs, new Comparator(){
public int compare(int[] first, int[] second)
{
if(first[1] < second[1]) return 1;
else return -1;
}
});

int maxProfit = 0;
int maxDeadline = 0;

// Find the maximum deadline among all the jobs.
for (int i = 0; i < jobs.length; i++)
{
maxDeadline = Math.max(maxDeadline, jobs[i][0]);
}

// Create a set "slots".
TreeSet set = new TreeSet();

// Insert all the elements from maxDeadline to 1 into the set.
for (int i = maxDeadline; i > 0; i--)
{
set.add(i);
}

// Arrange elements of set in descending order
TreeSet slots = (TreeSet)set.descendingSet();

for (int i = 0; i < jobs.length; i++)
{
if (slots.size() == 0 || jobs[i][0] < slots.last())
{
continue;
}

Integer availableSlot = -1;

for (Integer val : slots)
{
if (val <= jobs[i][0])
{
availableSlot = val;
break;
}
}

if (availableSlot != -1)
{
maxProfit = maxProfit + jobs[i][1];

slots.remove(availableSlot);
}
}

return maxProfit;
}
}


C++ (g++ 5.4)
/*

Time Complexity : O(N *log max(N, maxDeadline))
Space Complexity : O(maxDeadline)

Where 'N' is size of the array "jobs" and
'maxDeadline' is the maximum among all the deadlines.
*/

#include
#include

// Custom Comparator function to sort the jobs in the decreasing order of their profit.
bool compare(vector &job1, vector &job2)
{
return job1[1] > job2[1];
}

int jobScheduling(vector> &jobs)
{

sort(jobs.begin(), jobs.end(), compare);

int maxProfit = 0;
int maxDeadline = 0;

// Find the maximum deadline among all the jobs.
for (int i = 0; i < jobs.size(); i++)
{
maxDeadline = max(maxDeadline, jobs[i][0]);
}

// Create a set "slots".
set> slots;

// Insert all the elements from maxDeadline to 1 into the set.
for (int i = maxDeadline; i > 0; i--)
{
slots.insert(i);
}

for (int i = 0; i < jobs.size(); i++)
{

// If the set is empty or the deadline is less than the last element of the set, then ignore this job.
if (slots.size() == 0 || jobs[i][0] < *slots.rbegin())
{
continue;
}

int availableSlot = *slots.lower_bound(jobs[i][0]);
maxProfit = maxProfit + jobs[i][1];
slots.erase(availableSlot);
}

return maxProfit;
}

Python (3.5)
'''
Time Complexity - O(N * log max(N, maxDeadline))
Space Complexity - O(maxDeadline)

Where N is size of the array "jobs" and maxDeadline is the maximum among all the deadlines.
'''

import bisect

def jobScheduling(jobs):

jobs.sort(key = lambda x: (-x[1], -x[0]))
maxProfit = 0
maxDeadline = 0

# Find the maximum deadline among all the jobs.
for i in range(0, len(jobs)):
maxDeadline = max(maxDeadline, jobs[i][0])

slots = list()

# Insert all the elements from maxDeadline to 1 into the list.
for i in range(1, maxDeadline + 1):
slots.append(i)

maxProfit = 0
for i in range(len(jobs)):

# If the set is empty or the deadline is less than the last element of the set, then ignore this job.
if len(slots) == 0 or jobs[i][0] < slots[0]:
continue

availableSlot = slots[bisect.bisect(slots, jobs[i][0]) - 1]
maxProfit += jobs[i][1]
slots.remove(availableSlot)

return maxProfit
Help your peers!
Add answer anonymously...
NCR Voyix Associate Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter