Problem Description
You are given an array of non-overlapping axis-aligned rectangles rects
where rects[i] = [ai, bi, xi, yi]
indicates that (ai, bi)
is the bottom-left corner point of the i
th rectangle and (xi, yi)
is the top-right corner point of the i
th rectangle. Design an algorithm to pick a random integer point inside the space covered by one of the given rectangles. A point on the perimeter of a rectangle is included in the space covered by the rectangle. Any integer point inside the space covered by one of the given rectangles should be equally likely to be returned.
Key Insights
- Each rectangle can be defined by its corners, allowing us to calculate the area covered by each rectangle.
- The total area of all rectangles can be used to generate a weighted random selection.
- Randomly selecting a rectangle based on its area allows for uniform distribution of points within the selected rectangle.
- The range of coordinates for random selection is limited by the dimensions of the rectangles, which are constrained to a maximum width and height of 2000.
Space and Time Complexity
Time Complexity: O(1) for the pick
method after initialization, which is O(n) where n is the number of rectangles.
Space Complexity: O(n) for storing the areas of rectangles.
Solution
To solve this problem, we can utilize the following approach:
- Calculate the area of each rectangle and maintain a cumulative area list to facilitate weighted random selection.
- Generate a random number that corresponds to a point in the cumulative area.
- Identify which rectangle this random number falls into using binary search.
- Once a rectangle is selected, randomly choose a point within its bounds using uniform random selection.