-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path630. Course Schedule III
46 lines (43 loc) · 1.51 KB
/
630. Course Schedule III
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
class Solution {
public int scheduleCourse(int[][] courses) {
Arrays.sort(courses, (a,b)-> a[1]==b[1] ? a[0]-b[0] : a[1]-b[1]);
PriorityQueue<Integer> pq = new PriorityQueue<>((a,b) -> b-a);
int time = 0;
for(int[] course : courses) {
//Check if we consider current course : if duration <= lastday
if(course[0] <= course[1]) {
//current course can be completed with the lastday given
if(course[0]+time <= course[1]) {
pq.offer(course[0]);
time+=course[0];
}
else {
//Check if we can swap
if(pq.peek() > course[0]) {
time-=pq.poll();
time+=course[0];
pq.offer(course[0]);
}
}
}
}
return pq.size();
}
}
//Short version of the code
public class Solution {
public int scheduleCourse(int[][] courses) {
Arrays.sort(courses, (a,b)-> a[1]==b[1] ? a[0]-b[0] : a[1]-b[1]);
PriorityQueue<Integer> pq=new PriorityQueue<>((a,b)->b-a);
int time=0;
for (int[] course : courses)
{
//Add current course to a priority queue
time+=course[0];
pq.offer(course[0]);
//If time exceeds, drop the previous course which costs the most time.
if (time>course[1]) time-=pq.poll();
}
return pq.size();
}
}