zoukankan      html  css  js  c++  java
  • [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/superluminal/

    struct cmp {
        inline bool operator() (const vector<int>& c1, const vector<int>& c2) {
            return c1[1] < c2[1];
        }
    };
    
    class Solution {
    public:
        int scheduleCourse(vector<vector<int>>& courses) {
            sort(courses.begin(), courses.end(), cmp());
            vector<int> best(1, 0);
            for (const auto& course : courses) {
                int t = course[0], d = course[1];
                if (t > d) continue; // impossible to even take this course
                int m = best.size();
                if (best[m-1]+t<=d) best.push_back(best[m-1]+t);
                for (int i = m-1; i>0; --i) {
                    if (best[i-1] + t <= d) {
                        best[i] = min(best[i], best[i-1] + t);
                    }
                }
            }
            return best.size() - 1;
        }
    };
  • 相关阅读:
    BZOJ4416 SHOI2013阶乘字符串(状压dp)
    雅礼集训 Day2 T3 联盟 解题报告
    雅礼集训 Day1 T2 折射
    雅礼集训 Day1 T1 养花
    P1494 [国家集训队]小Z的袜子/莫队学习笔记(误
    洛谷 P2155 [SDOI2008]沙拉公主的困惑 解题报告
    动态MST
    洛谷 P2606 [ZJOI2010]排列计数 解题报告
    牛客 2018NOIP 模你赛2 T2 分糖果 解题报告
    洛谷 P3396 哈希冲突 解题报告
  • 原文地址:https://www.cnblogs.com/hellowooorld/p/7076528.html
Copyright © 2011-2022 走看看