Problem Description
You are given a 2D array of axis-aligned rectangles. Each rectangle[i] = [xi1, yi1, xi2, yi2] denotes the i-th rectangle where (xi1, yi1) are the coordinates of the bottom-left corner, and (xi2, yi2) are the coordinates of the top-right corner. Calculate the total area covered by all rectangles in the plane. Any area covered by two or more rectangles should only be counted once. Return the total area modulo 10^9 + 7.
Key Insights
- The problem requires calculating the union area of multiple rectangles, which can overlap.
- A line sweep algorithm can be employed to efficiently compute the area by processing events corresponding to the edges of the rectangles.
- Utilizing data structures such as segment trees or ordered sets can help maintain the active intervals during the sweep.
Space and Time Complexity
Time Complexity: O(n log n) where n is the number of rectangles due to sorting the events and maintaining active intervals. Space Complexity: O(n) for storing the events and active intervals.
Solution
To solve this problem, we use a line sweep algorithm. We treat the left and right edges of the rectangles as events. As we sweep from left to right, we keep track of the active intervals (y-coordinates) that are currently covered by rectangles. We can use a segment tree or an ordered set to efficiently manage these intervals. The area can be computed by multiplying the width of the sweep by the total height covered by the active intervals.