-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
85 lines (75 loc) · 2.59 KB
/
main.cpp
File metadata and controls
85 lines (75 loc) · 2.59 KB
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
// Source: https://leetcode.com/problems/my-calendar-iii
// Title: My Calendar III
// Difficulty: Hard
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// A `k`-booking happens when `k` events have some non-empty intersection (i.e., there is some time that is common to all `k` events.)
//
// You are given some events `[startTime, endTime)`, after each given event, return an integer `k` representing the maximum `k`-booking between all the previous events.
//
// Implement the `MyCalendarThree` class:
//
// - `MyCalendarThree()` Initializes the object.
// - `int book(int startTime, int endTime)` Returns an integer `k` representing the largest integer such that there exists a `k`-booking in the calendar.
//
// **Example 1:**
//
// ```
// Input:
// ["MyCalendarThree", "book", "book", "book", "book", "book", "book"]
// [[], [10, 20], [50, 60], [10, 40], [5, 15], [5, 10], [25, 55]]
//
// Output:
// [null, 1, 1, 2, 3, 3, 3]
//
// Explanation:
// MyCalendarThree myCalendarThree = new MyCalendarThree();
// myCalendarThree.book(10, 20); // return 1
// myCalendarThree.book(50, 60); // return 1
// myCalendarThree.book(10, 40); // return 2
// myCalendarThree.book(5, 15); // return 3
// myCalendarThree.book(5, 10); // return 3
// myCalendarThree.book(25, 55); // return 3
// ```
//
// **Constraints:**
//
// - `0 <= startTime < endTime <= 10^9`
// - At most `400` calls will be made to `book`.
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <algorithm>
#include <map>
using namespace std;
// Line Sweep + Tree Map
//
// Stores the start/end time in the tree map.
//
// We first book the new event.
// Next loop through the time range and find the max event count.
class MyCalendarThree {
enum State { START = 1, END = -1 };
map<int, int> deltas; // time -> event count delta
public:
MyCalendarThree() {}
int book(int startTime, int endTime) {
// Book the new event
deltas[startTime]++;
deltas[endTime]--;
// Loop
int maxCount = 0;
int eventCount = 0;
for (const auto [time, delta] : deltas) {
eventCount += delta;
maxCount = max(maxCount, eventCount);
}
return maxCount;
}
};
// Segment Tree
//
// We can use segment tree instead of tree set.
// We should use tree-based implementation (instead of array-based).
// It should support lazy flag (for range update).
// It should support lazy node creation (since the time range is too large).
class MyCalendarThree2 {};