-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathisRectangleCover.cpp
More file actions
32 lines (32 loc) · 1.52 KB
/
isRectangleCover.cpp
File metadata and controls
32 lines (32 loc) · 1.52 KB
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
class Solution {
public:
bool isRectangleCover(vector<vector<int>>& rectangles) {
unordered_set<string> st;
int min_x = INT_MAX, min_y = INT_MAX, max_x = INT_MIN, max_y = INT_MIN, area = 0;
for (auto rect : rectangles) {
min_x = min(min_x, rect[0]);
min_y = min(min_y, rect[1]);
max_x = max(max_x, rect[2]);
max_y = max(max_y, rect[3]);
area += (rect[2] - rect[0]) * (rect[3] - rect[1]);
string s1 = to_string(rect[0]) + "*" + to_string(rect[1]); // bottom-left
string s2 = to_string(rect[0]) + "*" + to_string(rect[3]); // top-left
string s3 = to_string(rect[2]) + "*" + to_string(rect[3]); // top-right
string s4 = to_string(rect[2]) + "*" + to_string(rect[1]); // bottom-right
if (st.count(s1)) st.erase(s1);
else st.insert(s1);
if (st.count(s2)) st.erase(s2);
else st.insert(s2);
if (st.count(s3)) st.erase(s3);
else st.insert(s3);
if (st.count(s4)) st.erase(s4);
else st.insert(s4);
}
string t1 = to_string(min_x) + "*" + to_string(min_y);
string t2 = to_string(min_x) + "*" + to_string(max_y);
string t3 = to_string(max_x) + "*" + to_string(max_y);
string t4 = to_string(max_x) + "*" + to_string(min_y);
if (!st.count(t1) || !st.count(t2) || !st.count(t3) || !st.count(t4) || st.size() != 4) return false;
return area == (max_x - min_x) * (max_y - min_y);
}
};