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

    The integer 1 <= d, t, n <= 10,000.
    You can't take two courses simultaneously.
    
    class Solution:
        def scheduleCourse(self, courses):
            """
            :type courses: List[List[int]]
            :rtype: int
            """
            def findElement(l, s, e, x):
                if s > e:
                    return s
                mid = int((s + e) / 2)
                if l[mid] < x:
                    if mid == len(l) - 1:
                        return mid + 1
                    if l[mid + 1] >= x:
                        return mid + 1
                    return findElement(l, mid + 1, e, x)
                if l[mid] > x:
                    if mid == 0:
                        return 0
                    if l[mid - 1] <= x:
                        return mid
                    return findElement(l, s, mid - 1, x)
                return mid
    
            courses.sort(key=lambda x: x[1])
            res = [courses[0][0]]
            consumingTimes = res[0]
            for i in courses[1:]:
                if consumingTimes + i[0] <= i[1]:
                    pos = findElement(res, 0, len(res) - 1, i[0])
                    if pos == len(res):
                        res.append(i[0])
                    else:
                        res.insert(pos, i[0])
                    consumingTimes += i[0]
                else:
                    if i[0] < res[-1]:
                        consumingTimes += i[0] - res[-1]
                        del res[-1]
                        pos = findElement(res, 0, len(res) - 1, i[0])
                        if pos == len(res):
                            res.append(i[0])
                        else:
                            res.insert(pos, i[0])
            return len(res)
    
  • 相关阅读:
    jQuery:提交表单前判断表单是否被修改过
    jQuery multiselect的使用
    input[file]标签的accept=”image/*”属性响应很慢的解决办法
    Linux-read命令
    shell编程学习
    优化网站加载速度
    select下拉框选中问题
    QTableWidget class
    QLabel class
    QMainWindow class
  • 原文地址:https://www.cnblogs.com/bernieloveslife/p/9733370.html
Copyright © 2011-2022 走看看