Problem Description
You are given an array points where points[i] = [xi, yi] represents the coordinates of a point on an infinite plane. Your task is to find the maximum area of a rectangle that:
- Can be formed using four of these points as its corners.
- Does not contain any other point inside or on its border.
- Has its edges parallel to the axes.
Return the maximum area that you can obtain or -1 if no such rectangle is possible.
Key Insights
- The rectangle is defined by selecting any two points as opposite corners.
- The other two corners can be determined using the x and y coordinates of the selected points.
- We must check that no other point lies inside or on the border of the rectangle formed by the selected corners.
- The area of the rectangle can be computed as (width * height), where width and height are the distances between the x and y coordinates of the corners.
Space and Time Complexity
Time Complexity: O(n^4) - Since we need to check combinations of four points. Space Complexity: O(n) - To store the points in a set for quick lookup.
Solution
To solve this problem, we will:
- Store all points in a set for O(1) lookup.
- Iterate through all combinations of two points to consider them as opposite corners of a rectangle.
- For each pair, determine the other two corners needed to complete the rectangle.
- Check if any point lies inside or on the border of the rectangle using the set.
- Calculate the area if the rectangle is valid and keep track of the maximum area found.