I have got a job scheduling problem. We are given start time, time to complete the order, deadline.
It is given that start time + time
to
complete <= deadline
.
I have also been given the loss that will occur if I am not able to complete the job before the deadline. I have to design an algorithm to minimize the loss.
I have tried changing the standard algorithm of dynamic programming for maximizing the profit in job scheduling but to no success.
What algorithm can I use to solve the question?