Problem Description
Given an empty set of intervals, implement a data structure that can add an interval to the set and count the number of integers that are present in at least one interval.
Key Insights
- Intervals can overlap, so we need to merge them when adding new intervals.
- Efficiently counting the total number of unique integers across potentially overlapping intervals is crucial.
- A sorted data structure can help keep track of intervals and facilitate merging.
Space and Time Complexity
Time Complexity: O(n log n) for adding intervals (due to merging), O(1) for counting. Space Complexity: O(n) for storing intervals.
Solution
The solution involves using a list to store the intervals. When adding a new interval, we will merge it with any existing overlapping intervals. This ensures that we maintain a compact representation of the intervals. To count the total number of unique integers, we simply sum the lengths of the merged intervals.