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)
    
  • 相关阅读:
    面向对象高级
    Intellij IDEA 激活码 | Intellij IDEA 注册码
    如何保证核心链路稳定性的流控和熔断机制?
    消息模型:主题和队列有什么区别?
    MySQL中悲观锁和乐观锁到底是什么?
    SQL是如何在数据库中执行的?
    ZooKeeper 面试题(30道ATM精选问题)
    线上服务的FGC问题排查,看这篇就够了!
    一次线上JVM调优实践,FullGC40次/天到10天一次的优化过程
    由多线程内存溢出产生的实战分析
  • 原文地址:https://www.cnblogs.com/bernieloveslife/p/9733370.html
Copyright © 2011-2022 走看看