-
Notifications
You must be signed in to change notification settings - Fork 613
/
253.py
34 lines (25 loc) · 861 Bytes
/
253.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
29
30
31
32
33
34
'''
Given an array of meeting time intervals consisting of start and end times [[s1,e1], [s2,e2],…] (si < ei), find the minimum number of conference rooms required.
For example,
Given [[0, 30],[5, 10],[15, 20]],
return 2.
'''
# Definition for an interval.
# class Interval(object):
# def __init__(self, s=0, e=0):
# self.start = s
# self.end = e
class Solution:
def minMeetingRooms(self, intervals):
if not intervals or len(intervals) == 0:
return 0
import heapq
sorted_intervals = sorted(intervals, key=lambda it:(it.start, it.end))
heap, result = [], 0
for interval in sorted_intervals:
start, end = interval.start, interval.end
while heap and heap[0] <= start:
heapq.heappop(heap)
heapq.heappush(heap, end)
result = max(result, len(heap))
return result