-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path855 Exam Room.py
87 lines (75 loc) · 2.66 KB
/
855 Exam Room.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/python3
"""
In an exam room, there are N seats in a single row, numbered 0, 1, 2, ..., N-1.
When a student enters the room, they must sit in the seat that maximizes the
distance to the closest person. If there are multiple such seats, they sit in
the seat with the lowest number. (Also, if no one is in the room, then the
student sits at seat number 0.)
Return a class ExamRoom(int N) that exposes two functions: ExamRoom.seat()
returning an int representing what seat the student sat in, and
ExamRoom.leave(int p) representing that the student in seat number p now leaves
the room. It is guaranteed that any calls to ExamRoom.leave(p) have a student
sitting in seat p.
Example 1:
Input: ["ExamRoom","seat","seat","seat","seat","leave","seat"],
[[10],[],[],[],[],[4],[]]
Output: [null,0,9,4,2,null,5]
Explanation:
ExamRoom(10) -> null
seat() -> 0, no one is in the room, then the student sits at seat number 0.
seat() -> 9, the student sits at the last seat number 9.
seat() -> 4, the student sits at the last seat number 4.
seat() -> 2, the student sits at the last seat number 2.
leave(4) -> null
seat() -> 5, the student sits at the last seat number 5.
Note:
1 <= N <= 10^9
ExamRoom.seat() and ExamRoom.leave() will be called at most 10^4 times across
all test cases.
Calls to ExamRoom.leave(p) are guaranteed to have a student currently sitting in
seat number p.
"""
import bisect
class ExamRoom:
def __init__(self, N: int):
"""
Maintain a sorted array of index. BST
BST -> bisect sort
O(N) per query
"""
self.N = N
self.idxes = [] # sorted arry of taken idx
def seat(self) -> int:
"""
similar to 849
"""
if not self.idxes:
ret_idx = 0
else:
max_dist, ret_idx = 0, 0
# begin
dist = self.idxes[0] - 0
if dist > max_dist:
max_dist = dist
ret_idx = 0
# middle
for j in range(len(self.idxes)-1):
i = (self.idxes[j] + self.idxes[j+1]) // 2
dist = min(abs(self.idxes[j] - i), abs(self.idxes[j+1] - i))
if dist > max_dist:
max_dist = dist
ret_idx = i
# end
dist = self.N-1 - self.idxes[-1]
if dist > max_dist:
max_dist = dist
ret_idx = self.N-1
bisect.insort(self.idxes, ret_idx)
return ret_idx
def leave(self, p: int) -> None:
self.idxes.remove(p)
# Your ExamRoom object will be instantiated and called as such:
# obj = ExamRoom(N)
# param_1 = obj.seat()
# obj.leave(p)