Problem Description
Design a data structure to track ranges represented as half-open intervals and query about them. Implement the RangeModule class with methods to add, query, and remove ranges.
Key Insights
- A half-open interval [left, right) includes left but excludes right.
- Overlapping intervals must be merged when adding a new range.
- Removing a range can split existing intervals into smaller intervals.
- Efficient querying requires checking if the entire queried range is covered.
Space and Time Complexity
Time Complexity:
- addRange: O(n) in the worst case (merging intervals).
- removeRange: O(n) in the worst case (splitting intervals).
- queryRange: O(log n) for searching intervals if using a sorted list.
Space Complexity: O(n) for storing the intervals.
Solution
The solution uses a list to store intervals. Each interval is represented as a tuple (left, right). When adding a range, we merge overlapping intervals. When removing a range, we split existing intervals as needed. Querying checks if the requested range is fully covered by the stored intervals.