Problem Description
You are implementing a program to use as your calendar. We can add a new event if adding the event will not cause a triple booking. A triple booking happens when three events have some non-empty intersection. The event can be represented as a pair of integers startTime
and endTime
that represents a booking on the half-open interval [startTime, endTime)
.
Implement the MyCalendarTwo
class:
MyCalendarTwo()
Initializes the calendar object.boolean book(int startTime, int endTime)
Returnstrue
if the event can be added to the calendar successfully without causing a triple booking. Otherwise, returnfalse
and do not add the event to the calendar.
Key Insights
- We need to track overlapping intervals for events to prevent triple bookings.
- A simple count of overlapping events is needed to determine if a new booking would cause a triple booking.
- Efficiently managing overlapping intervals can be achieved using a data structure that allows quick updates and queries.
Space and Time Complexity
Time Complexity: O(n log n) for inserting and checking overlaps due to sorting operations on the intervals.
Space Complexity: O(n) for storing the booked intervals.
Solution
To solve this problem, we can use a list to maintain the start and end times of the events. When a new booking is requested, we will:
- Check for overlaps with existing bookings by iterating through the list of booked intervals.
- Maintain a count of how many events are overlapping at any given time.
- If at any point the count exceeds 2, we will reject the booking.
- If the booking is valid, we add it to our list of booked intervals.
We can also utilize a dictionary to keep track of the number of overlapping events at each time point.