Skip to content

Commit 4ac7201

Browse files
authored
Update my-calendar-iii.py
1 parent 00f3be7 commit 4ac7201

File tree

1 file changed

+31
-3
lines changed

1 file changed

+31
-3
lines changed

Python/my-calendar-iii.py

+31-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,41 @@
1-
# Time: O(n^2)
1+
# Time: O(nlogn) ~ O(n^2)
22
# Space: O(n)
33

44
import bisect
55

66

77
class MyCalendarThree(object):
88

9+
def __init__(self):
10+
self.__books = [[-1, 0]]
11+
self.__count = 0
12+
13+
def book(self, start, end):
14+
"""
15+
:type start: int
16+
:type end: int
17+
:rtype: int
18+
"""
19+
i = bisect.bisect_right(self.__books, [start, float("inf")])
20+
if self.__books[i-1][0] == start:
21+
i -= 1
22+
else:
23+
self.__books.insert(i, [start, self.__books[i-1][1]])
24+
j = bisect.bisect_right(self.__books, [end, float("inf")])
25+
if self.__books[j-1][0] == end:
26+
j -= 1
27+
else:
28+
self.__books.insert(j, [end, self.__books[j-1][1]])
29+
for k in xrange(i, j):
30+
self.__books[k][1] += 1
31+
self.__count = max(self.__count, self.__books[k][1])
32+
return self.__count
33+
34+
35+
# Time: O(n^2)
36+
# Space: O(n)
37+
class MyCalendarThree2(object):
38+
939
def __init__(self):
1040
self.__books = []
1141

@@ -34,5 +64,3 @@ def book(self, start, end):
3464
result = max(result, cnt)
3565
return result
3666

37-
38-

0 commit comments

Comments
 (0)