Course Schedule III 解法

Course Schedule III 解法


第 14 周题目
难度:Hard
LeetCode题号:630

题目

Description:

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: 3
Explanation:
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.


思考

维持变量totol用来保存学习了的课程总时间,course_selected保存选择了的课程对应的时间,最后返回course_selected的大小,即为所选的课程数目
由题意可知,我们应该每次选择d最小的那行数据(假设叫current),判断这个数据加上之前的那些课程的时间totol是否超过了这行数据的d,如果没超过,就选这门课程,更新course_selected和totol
如果超过了这行数据的d,那么我们就要考虑上一个数据(假设为pre),比较他们的t,选择较小的课。因为current的d比较大,所以是可以的


代码

bool comp(const vector<int> & a, const vector<int> & b) {
    return a[1] < b[1];
}

class Solution {
public:
    int scheduleCourse(vector<vector<int>>& courses) {
        sort(courses.begin(), courses.end(), comp);
        int total_day = 0;
        multiset<int> course_selected;
        for (int i = 0; i < courses.size(); i++) {
            if (total_day + courses[i][0] <= courses[i][1]) {
                total_day += courses[i][0];
                course_selected.insert(courses[i][0]);
            } else if (*course_selected.rbegin() > courses[i][0]) {
                total_day += courses[i][0] - *course_selected.rbegin();
                course_selected.erase(--course_selected.end());
                course_selected.insert(courses[i][0]);
            }
        }
        return course_selected.size();
    }
};
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值