• 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)
    
  • 相关阅读:
    安卓 广播机制
    安卓 活动的启动模式
    安卓 生命周期
    安卓六大布局
    day4-list,列表
    Leetcode 947 移除最多的同行或同列石头
    Leetcode 628三个数的最大乘积
    Leetcode 1584连接所有点的最小费用
    Leetcode 721 账户合并
    Leetcode 103 二叉树的锯齿层序遍历
  • 原文地址:https://www.cnblogs.com/bernieloveslife/p/9733370.html
Copyright © 2020-2023  润新知