Problem Description
You are given a 2D integer array ranges where ranges[i] = [start_i, end_i] denotes that all integers between start_i and end_i (both inclusive) are contained in the i-th range. You are to split ranges into two (possibly empty) groups such that:
- Each range belongs to exactly one group.
- Any two overlapping ranges must belong to the same group.
Two ranges are said to be overlapping if there exists at least one integer that is present in both ranges. Return the total number of ways to split ranges into two groups. Since the answer may be very large, return it modulo 10^9 + 7.
Key Insights
- Overlapping ranges must be grouped together.
- Non-overlapping ranges can be assigned independently to either group.
- The problem can be represented as a graph where ranges are nodes and edges connect overlapping ranges.
- The number of connected components in this graph determines the number of ways to split the groups.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the ranges. Space Complexity: O(n) - for storing the adjacency list of the graph.
Solution
To solve the problem, we can follow these steps:
- Sort the ranges based on their starting values. If two ranges start at the same point, sort based on their ending value.
- Build a graph where each range is a node, and edges represent overlapping ranges.
- Use DFS/BFS to find connected components in the graph. Each connected component can be grouped in two ways (either in group 1 or group 2).
- The total number of ways to split the ranges is 2 raised to the power of the number of connected components, modulo 10^9 + 7.