Given a set of points in the xy-plane, determine the minimum area of a rectangle formed from these points, with sides parallel to the x and y axes.
If there isn't any rectangle, return 0.
Example 1:
Input: [[1,1],[1,3],[3,1],[3,3],[2,2]] Output: 4
Example 2:
Input: [[1,1],[1,3],[3,1],[3,3],[4,1],[4,3]] Output: 2
Note:
1 <= points.length <= 5000 <= points[i][0] <= 400000 <= points[i][1] <= 40000- All points are distinct.
找对角的点
O(n^2)
class Solution {
public int minAreaRect(int[][] points) {
Map<Integer, Set<Integer>> map = new HashMap<>();
for (int[] p : points) {
if (!map.containsKey(p[0])) {
map.put(p[0], new HashSet<>());
}
map.get(p[0]).add(p[1]);
}
int min = Integer.MAX_VALUE;
for (int[] p1 : points) {
for (int[] p2 : points) {
if (p1[0] == p2[0] || p1[1] == p2[1]) continue;
if (map.get(p1[0]).contains(p2[1]) && map.get(p2[0]).contains(p1[1])) {
min = Math.min(Math.abs(p1[0] - p2[0]) * Math.abs(p1[1] - p2[1]), min);
}
}
}
return min == Integer.MAX_VALUE ? 0 : min;
}
}
No comments:
Post a Comment