【码不停题3.20】课程表|||

这里有 n 门不同的在线课程,他们按从 1 到 n 编号。每一门课程有一定的持续上课时间(课程时间)t 以及关闭时间第 d 天。一门课要持续学习 t 天直到第 d 天时要完成,你将会从第 1 天开始。

给出 n 个在线课程用 (t, d) 对表示。你的任务是找出最多可以修几门课。

示例:

输入: [[100, 200], [200, 1300], [1000, 1250], [2000, 3200]]
输出: 3
解释:
这里一共有 4 门课程, 但是你最多可以修 3 门:
首先, 修第一门课时, 它要耗费 100 天,你会在第 100 天完成, 在第 101 天准备下门课。
第二, 修第三门课时, 它会耗费 1000 天,所以你将在第 1100 天的时候完成它, 以及在第 1101 天开始准备下门课程。
第三, 修第二门课时, 它会耗时 200 天,所以你将会在第 1300 天时完成它。
第四门课现在不能修,因为你将会在第 3300 天完成它,这已经超出了关闭日期。

提示:

整数 1 <= d, t, n <= 10,000 。
你不能同时修两门课程。

class Solution {
public:
    static int compare(const vector<int> &a, const vector<int> &b) {
        return a[1] < b[1];
    }
    int scheduleCourse(vector<vector<int>>& courses) {
        sort(courses.begin(), courses.end(), compare);
        int ans = 0;
        int day = 0;
        priority_queue<int> longests;
        for (auto it: courses) {
            if (it[1] - it[0] >= day) {
                longests.push(it[0]);
                day += it[0];
                ans++;
            } else {
                if (!longests.empty() && longests.top() > it[0]) {
                    day -= (longests.top() - it[0]);
                    longests.pop();
                    longests.push(it[0]);
                }
            }
        }
        return ans;
    }
};

总结优先队列的用法:

  1. template <class T, class Container = vector<T>, class Compare = less<typename Container::value_type> > class priority_queue;
    默认是最大的在队首
  2. 方法
    Construct priority queue (public member function )
    empty
    Test whether container is empty (public member function )
    size
    Return size (public member function )
    top
    Access top element (public member function )
    push
    Insert element (public member function )
    emplace 
    Construct and insert element (public member function )
    pop
    Remove top element (public member function )
    swap 
    Swap contents (public member function )
    
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值