-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path86.py
28 lines (20 loc) · 784 Bytes
/
86.py
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
# 253. Meeting rooms II
# MEDIUM
class Solution:
def minMeetingRooms(self, intervals: List[List[int]]) -> int:
if not intervals:
return 0
# sort the intervals based on start time of intervals
intervals.sort(key=lambda x: x[0])
heap = []
heapq.heappush(heap, intervals[0][1])
# compare the heap top interval with curr interval
# if the top intervals end time < curr start time, pop the top element
# if not, add the interval's end time into heap.
# return the size of the heap
for i in range(1, len(intervals)):
curr = intervals[i]
if heap[0] <= curr[0]:
heapq.heappop(heap)
heapq.heappush(heap, curr[1])
return len(heap)