码迷,mamicode.com
首页 > 其他好文 > 详细

630. Course Schedule III

时间:2017-08-05 13:19:59      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:queue   closed   div   line   cee   ace   add   diff   make   

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 dthday. 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.

 

public class Solution {
    public int scheduleCourse(int[][] courses) {
        //Sort the courses by deadlines (Deal with courses with early deadlines first)
        Arrays.sort(courses,(a,b)->a[1]-b[1]); 
        PriorityQueue<Integer> pq=new PriorityQueue<>((a,b)->b-a);
        int time=0;
        for (int[] c:courses) 
        {
            //iterate through all courses, and add each one to a "container"
            //the container size is determined by "time"
            time+=c[0]; // add current course to a priority queue
            pq.add(c[0]);
            if (time>c[1]) 
                // if the last course exceeds the end_time, it means the last course is not valid.
                // Remember that the lastly added course has a later end_time, 
                // So it can replace any course in the container, whose size is at least larger than the last course
                // to make the container valid again.
                time -= pq.poll();
        }        
        return pq.size();
    }
}

  

 

630. Course Schedule III

标签:queue   closed   div   line   cee   ace   add   diff   make   

原文地址:http://www.cnblogs.com/neweracoding/p/7289833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!