leetcode 630. Course Schedule III

来源:互联网 发布:知行家 编辑:程序博客网 时间:2024/06/05 12:04

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:

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

贪心。消耗时间段小的肯定比消耗时间大的好。这算是比较简单的贪心了,但是一直感觉自己贪心的想法想不到点上。。。。不知道怎么去锻炼贪心思维啊。。。
class Solution {public:    static int cmp(vector<int> a, vector<int> b) {        return a[1] < b[1];    }    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> heap;        int now = 0;        for (int i = 0; i < courses.size(); ++ i)        {            heap.push(courses[i][0]);            now += courses[i][0];            if (now > courses[i][1])                now -= heap.top(), heap.pop();        }        return heap.size();    }};



 
原创粉丝点击