题目与 LC 1235. 规划兼职工作相同,但是需要输出最优任务的下标。 在原题的代码基础上加入路径记录就行了。DP+二分+记录路径: class Solution { static class Job implements Comparable<Job> { int l, r, w; int idx; Job(int l, int r, int w, int idx) { this.l = l; this.r = r; this.w ...