630. Course Schedule III

网友投稿 607 2022-09-04

630. Course Schedule III

630. Course Schedule III

There are n different online courses numbered from 1 to n. Each course has some duration(course length) t and closed on dth day. A course should be taken continuously for t days and must be finished before or on the dth day. You will start at the 1st day.

Given n online courses represented by pairs (t,d), your task is to find the maximal number of courses that can be taken.

Example:

Input: [[100, 200], [200, 1300], [1000, 1250], [2000, 3200]]Output: 3Explanation: There're totally 4 courses, but you can take 3 courses at most:First, take the 1st course, it costs 100 days so you will finish it on the 100th day, and ready to take the next course on the 101st day.Second, take the 3rd course, it costs 1000 days so you will finish it on the 1100th day, and ready to take the next course on the 1101st day. Third, take the 2nd course, it costs 200 days so you will finish it on the 1300th day. The 4th course cannot be taken now, since you will finish it on the 3300th day, which exceeds the closed date.

Note: The integer 1 <= d, t, n <= 10,000. You can’t take two courses simultaneously.

class Solution public int scheduleCourse(int[][] courses) { Arrays.sort(courses, (a, b) -> a[1] - b[1]); PriorityQueue queue = new PriorityQueue <> ((a, b) -> b - a); int time = 0; for (int[] c: courses) { if (time + c[0] <= c[1]) { queue.offer(c[0]); time += c[0]; } else if (!queue.isEmpty() && queue.peek() > c[0]) { time += c[0] - queue.poll(); queue.offer(c[0]); } } return queue.size(); }}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:600. Non-negative Integers without Consecutive Ones
下一篇:你可能会忽略的 Git 提交规范(当你被忽略的时候)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~