855. Exam Room
Medium
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()
andExamRoom.leave()
will be called at most10^4
times across all test cases.- Calls to
ExamRoom.leave(p)
are guaranteed to have a student currently sitting in seat numberp
.
class ExamRoom { List<Integer> L = new ArrayList<>(); int N; public ExamRoom(int N) { this.N = N; } public int seat() { if(L.isEmpty()){ L.add(0); return 0; } //find the min distance for the seat; int d = 0; //gaps to the first person if seat at 0 d = Math.max(d, L.get(0)); //gaps to the last person if seat at N-1 d = Math.max(d, N-1-L.get(L.size()-1)); //gaps inbetween for(int i=0; i<L.size()-1; ++i){ d = Math.max(d, (L.get(i+1)-L.get(i))/2); } //if the leading gap is the longest if(d == L.get(0)){ L.add(0, 0); return 0; } for(int i=0; i<L.size()-1; ++i){ if(d == (L.get(i+1)-L.get(i))/2){ int p = L.get(i) + d; L.add(i+1, p); return p; }; } //tail L.add(N-1); return N-1; } public void leave(int p) { for(int i=0; i<L.size(); ++i){ if(L.get(i)==p){ L.remove(i); } } } } /** * Your ExamRoom object will be instantiated and called as such: * ExamRoom obj = new ExamRoom(N); * int param_1 = obj.seat(); * obj.leave(p); */
No comments:
Post a Comment