Solution: Rectangle Overlap
Let’s solve the Rectangle Overlap problem using the Math and Geometry pattern.
We'll cover the following
Statement
An axis-aligned rectangle is represented by a list
denotes the coordinates of the bottom-left corner. denotes the coordinates of the top-right corner.
The rectangle’s sides are aligned with the axes:
The top and bottom edges are parallel to the
. The left and right edges are parallel to the
.
Note: Two rectangles are considered to overlap if their intersection forms a region with a positive area. Rectangles that touch only at the edges or corners are not considered to overlap.
Determine if the two axis-aligned rectangles, rec1
and rec2
, overlap. Return TRUE if they overlap; otherwise, return FALSE.
Constraints:
rec1.length
rec2.length
rec1[i]
,rec2[i]
rec1
andrec2
represent a valid rectangle with a non-zero area.
Solution
The solution uses the math and geometry pattern to determine if two axis-aligned rectangles overlap. It simplifies the problem into one-dimensional interval overlaps for the x-axis and y-axis projections. The overlap of two rectangles corresponds to the overlap of these projections, forming a region with positive width and height. Using this geometric insight, the solution checks for overlaps cleanly and seamlessly.
Now, let’s dive deep into the key intuition of the solution:
Rectangle overlap definition:
Two rectangles overlap if the area of their intersection is positive. This means the intersection’s width (x-axis overlap) and height (y-axis overlap) must be positive.
Mathematical representation of width overlap:
The overlap along the x-axis is positive when:
Here,
Mathematical representation of height overlap:
The overlap along the y-axis is positive when:
Similarly,
Reduction to 1D interval overlap:
The problem is reduced to determining whether two line segments overlap in 1D space. For an axis-aligned rectangle:
The width is the overlap of its x-axis projection.
The height is the overlap of its y-axis projection.
So, the width and height overlaps must be positive for the rectangles to overlap. If either overlap is zero or negative, the rectangles do not overlap.
Now, let’s look at the solution steps below:
To check width overlap:
Calculate the smallest right boundary:
min(rec1[2],rec2[2])
.Calculate the largest left boundary:
max(rec1[0],rec2[0])
.Verify if the width overlap is positive by checking if
min(rec1[2],rec2[2]) > max(rec1[0],rec2[0])
. If TRUE, there is a positive width overlap.
To check height overlap:
Calculate the smallest top boundary:
min(rec1[3],rec2[3])
.Calculate the largest bottom boundary:
max(rec1[1],rec2[1])
.Verify if the height overlap is positive by checking if
min(rec1[3],rec2[3]) > max(rec1[1],rec2[1])
. If TRUE, there is a positive height overlap.
Combine the above conditions and return TRUE if the width and height overlaps are positive. Otherwise, return FALSE.
Let’s look at the following illustration to get a better understanding of the solution:
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.