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)
    
  • 相关阅读:
    python加速包numba并行计算多线程
    idea Exception in thread "http-apr-8080-exec-2" java.lang.OutOfMemoryError: PermGen space
    centos6.5 导入matplotlib报错 No module named '_tkinter
    pythonTensorFlow实现yolov3训练自己的目标检测探测自定义数据集
    ajax post请求json数据在spring-controller解析
    python keras YOLOv3实现目标检测
    mybatis 插入语句name no find
    python调用百度语音识别接口实时识别
    idea ssm框架搭建
    OpenCVSSDpython目标探测对象检测
  • 原文地址:https://www.cnblogs.com/bernieloveslife/p/9733370.html
Copyright © 2011-2022 走看看