Random Point in Non-overlapping Rectangles — LeetCode 497 Python Solution
- Problem
- #497
- Pattern
- Prefix Sum
- Reading time
- 3 min
- Source
- leetcode.com
The problem
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 ith rectangle and (xi, yi) is the top-right corner point of the ith rectangle. Design an algorithm to pick a random integer point inside the space covered by one of the given rectangles.
Example
- Input
- ["Solution", "pick", "pick", "pick", "pick", "pick"]
- Output
- [null, [1, -2], [1, -1], [-1, -2], [-2, -2], [0, 0]]
- Explanation
- Solution solution = new Solution([[-2, -2, 1, 1], [2, 2, 4, 6]]);
Python solution
class Solution:
def __init__(self, rects: List[List[int]]):
self.rects = rects
self.s = [0] * len(rects)
for i, (x1, y1, x2, y2) in enumerate(rects):
self.s[i] = self.s[i - 1] + (x2 - x1 + 1) * (y2 - y1 + 1)
def pick(self) -> List[int]:
v = random.randint(1, self.s[-1])
idx = bisect_left(self.s, v)
x1, y1, x2, y2 = self.rects[idx]
return [random.randint(x1, x2), random.randint(y1, y2)]
# Your Solution object will be instantiated and called as such:
# obj = Solution(rects)
# param_1 = obj.pick()Complexity
| Measure | Complexity |
|---|---|
| Time | O(log n) or O(n log n) |
| Space | O(1) auxiliary |
Pattern: Prefix Sum
Precompute running totals once so any range query becomes a single subtraction. LeetCode 497. Random Point in Non-overlapping Rectangles is filed here because LeetCode tags it Prefix Sum, which is the vocabulary this hub collects.
The prefix sum guide has the Python template for the pattern and the 157 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 497. Random Point in Non-overlapping Rectangles?
- LeetCode 497. Random Point in Non-overlapping Rectangles is rated Medium on LeetCode.
- What topics does LeetCode 497. Random Point in Non-overlapping Rectangles cover?
- LeetCode 497. Random Point in Non-overlapping Rectangles is tagged Reservoir Sampling, Array, Math, Binary Search, Ordered Set, Prefix Sum and Randomized on LeetCode.