-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0729-my-calendar-i.js
82 lines (73 loc) · 2.13 KB
/
0729-my-calendar-i.js
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
/**
* 729. My Calendar I
* https://leetcode.com/problems/my-calendar-i/
* Difficulty: Medium
*
* You are implementing a program to use as your calendar. We can add a new event if adding the
* event will not cause a double booking.
*
* A double booking happens when two events have some non-empty intersection (i.e., some moment
* is common to both events.).
*
* The event can be represented as a pair of integers startTime and endTime that represents a
* booking on the half-open interval [startTime, endTime), the range of real numbers x such
* that startTime <= x < endTime.
*
* Implement the MyCalendar class:
* - MyCalendar() Initializes the calendar object.
* - boolean book(int startTime, int endTime) Returns true if the event can be added to the
* calendar successfully without causing a double booking. Otherwise, return false and do
* not add the event to the calendar.
*/
class MyCalendar {
constructor() {
this.events = [];
}
/**
* @param {number} startTime
* @param {number} endTime
* @returns {boolean}
*/
book(startTime, endTime) {
const event = [startTime, endTime];
const index = this.findInsertIndex(startTime);
if (this.overlapsPrevious(index - 1, startTime) || this.overlapsNext(index, endTime)) {
return false;
}
this.events.splice(index, 0, event);
return true;
}
/**
* @param {number} startTime
* @returns {number}
*/
findInsertIndex(startTime) {
let left = 0;
let right = this.events.length;
while (left < right) {
const mid = Math.floor((left + right) / 2);
if (this.events[mid][0] > startTime) {
right = mid;
} else {
left = mid + 1;
}
}
return left;
}
/**
* @param {number} prevIndex
* @param {number} startTime
* @returns {boolean}
*/
overlapsPrevious(prevIndex, startTime) {
return prevIndex >= 0 && this.events[prevIndex][1] > startTime;
}
/**
* @param {number} nextIndex
* @param {number} endTime
* @returns {boolean}
*/
overlapsNext(nextIndex, endTime) {
return nextIndex < this.events.length && this.events[nextIndex][0] < endTime;
}
}