forked from xiaoyaoworm/Leetcode-java
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path253_minMeetingRooms.java
41 lines (37 loc) · 1.26 KB
/
253_minMeetingRooms.java
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
/**
* Definition for an interval.
* public class Interval {
* int start;
* int end;
* Interval() { start = 0; end = 0; }
* Interval(int s, int e) { start = s; end = e; }
* }
*/
public class Solution {
public int minMeetingRooms(Interval[] intervals) {
if(intervals == null || intervals.length == 0) return 0;
Comparator<Interval> startComparator = new Comparator<Interval>(){
public int compare(Interval a, Interval b){
return a.start - b.start;
}
};
Arrays.sort(intervals, startComparator);
Comparator<Interval> endComparator = new Comparator<Interval>(){
public int compare(Interval a, Interval b){
return a.end - b.end;
}
};
PriorityQueue<Interval> pq = new PriorityQueue<Interval>(intervals.length, endComparator);
pq.offer(intervals[0]);
for(int i = 1; i < intervals.length; i++){
Interval current = pq.poll();
if(current.end <= intervals[i].start){
current.end = intervals[i].end;
} else{
pq.offer(intervals[i]);
}
pq.offer(current);
}
return pq.size();
}
}