我是靠谱客的博主 淡然世界,最近开发中收集的这篇文章主要介绍leetcode 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: 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.

Note:

  1. The integer 1 <= d, t, n <= 10,000.
  2. You can't take two courses simultaneously

题目链接:https://leetcode.com/problems/course-schedule-iii/

class Solution {
public:
    int scheduleCourse(vector<vector<int>>& courses) {
        sort(courses.begin(), courses.end(), 
             [](vector<int> &a, vector<int> &b) { return a[1] < b[1]; });
        priority_queue<int> pq;//默认是大顶堆
        long time = 0;
        for (auto &course : courses) {
            if (time + course[0] <= course[1]) {
                time += course[0];
                pq.push(course[0]);
            } else if (!pq.empty() && pq.top() > course[0]) {
                time += (course[0] - pq.top());
                pq.pop();
                pq.push(course[0]);
            }
        }
        return pq.size();
    }
};

 priority_queue默认是大顶堆,可以参考https://www.cnblogs.com/huashanqingzhu/p/11040390.html

最后

以上就是淡然世界为你收集整理的leetcode 630. Course Schedule III最多上多少门课程的全部内容,希望文章能够帮你解决leetcode 630. Course Schedule III最多上多少门课程所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部