forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
minimum-area-rectangle.cpp
83 lines (78 loc) · 2.73 KB
/
minimum-area-rectangle.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
// Time: O(n^1.5) on average
// O(n^2) on worst
// Space: O(n)
class Solution {
public:
template <typename T>
struct PairHash {
size_t operator()(const pair<T, T>& p) const {
size_t seed = 0;
seed ^= std::hash<T>{}(p.first) + 0x9e3779b9 + (seed<<6) + (seed>>2);
seed ^= std::hash<T>{}(p.second) + 0x9e3779b9 + (seed<<6) + (seed>>2);
return seed;
}
};
int minAreaRect(vector<vector<int>>& points) {
unordered_set<int> x_set, y_set;
for (const auto& point : points) {
x_set.emplace(point[0]);
y_set.emplace(point[1]);
}
map<int, vector<int>> p;
if (x_set.size() > y_set.size()) {
for (const auto& point : points) {
p[point[0]].emplace_back(point[1]);
}
} else {
for (const auto& point : points) {
p[point[1]].emplace_back(point[0]);
}
}
unordered_map<pair<int, int>, int, PairHash<int>> lookup;
int result = numeric_limits<int>::max();
for (const auto& kvp : p) {
auto x = kvp.first;
sort(p[x].begin(), p[x].end());
for (int j = 0; j < p[x].size(); ++j) {
for (int i = 0; i < j; ++i) {
int y1 = p[x][i], y2 = p[x][j];
if (lookup.count(make_pair(y1, y2))) {
result = min(result, (x - lookup[make_pair(y1, y2)]) * abs(y2 - y1));
}
lookup[make_pair(y1, y2)] = x;
}
}
}
return result != numeric_limits<int>::max() ? result : 0;
}
};
// Time: O(n^2)
// Space: O(n)
class Solution2 {
public:
template <typename T>
struct PairHash {
size_t operator()(const pair<T, T>& p) const {
size_t seed = 0;
seed ^= std::hash<T>{}(p.first) + 0x9e3779b9 + (seed<<6) + (seed>>2);
seed ^= std::hash<T>{}(p.second) + 0x9e3779b9 + (seed<<6) + (seed>>2);
return seed;
}
};
int minAreaRect(vector<vector<int>>& points) {
unordered_set<pair<int, int>, PairHash<int>> lookup;
int result = numeric_limits<int>::max();
for (const auto& point1 : points) {
int x1 = point1[0], y1 = point1[1];
for (const auto& point2 : lookup) {
int x2, y2; tie(x2, y2) = point2;
if (lookup.count(make_pair(x1, y2)) &&
lookup.count(make_pair(x2, y1))) {
result = min(result, abs(x1 - x2) * abs(y1 - y2));
}
}
lookup.emplace(x1, y1);
}
return result != numeric_limits<int>::max() ? result : 0;
}
};