English

The Art of Staying Ahead of Deadlines: Improved Algorithms for the Minimum Tardy Processing Time

Data Structures and Algorithms 2024-02-29 v2 Computational Complexity

Abstract

We study the fundamental scheduling problem 1pjUj1\|\sum p_jU_j. Given a set of nn jobs with processing times pjp_j and deadlines djd_j, the problem is to select a subset of jobs such that the total processing time is maximized without violating the deadlines. In the midst of a flourishing line of research, Fischer and Wennmann have recently devised the sought-after O~(P)\widetilde O(P)-time algorithm, where P=pjP = \sum p_j is the total processing time of all jobs. This running time is optimal as it matches conditional lower bounds based on popular conjectures. However, PP is not the sole parameter one could parameterize the running time by. Indeed, they explicitly leave open the question of whether a running time of O~(n+maxdj)\widetilde O(n + \max d_j) or even O~(n+maxpj)\widetilde O(n + \max p_j) is possible. In this work, we show, somewhat surprisingly, that by a refined implementation of their original algorithm, one can obtain the asked-for O~(n+maxdj)\widetilde O(n + \max d_j)-time algorithm.

Keywords

Cite

@article{arxiv.2402.16847,
  title  = {The Art of Staying Ahead of Deadlines: Improved Algorithms for the Minimum Tardy Processing Time},
  author = {Mihail Stoian},
  journal= {arXiv preprint arXiv:2402.16847},
  year   = {2024}
}

Comments

The runtime analysis is incorrect: the contribution of the processing times in [d_j - p_j, d_{j - 1}] is not taken into account. We thank N. Fischer for pointing this out