0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 09:05:25 +00:00
OI-codes/XJOI/contest/21novice/B/B.cpp

25 lines
584 B
C++

#include <bits/stdc++.h>
using namespace std;
int n, m, lx, ly, rx, ry;
pair<int, int> point[1005];
int main() {
cin >> n >> m;
for (int i = 0; i < n; i++) {
cin >> point[i].first >> point[i].second;
}
for (int i = 0; i < m; i++) {
cin >> lx >> ly >> rx >> ry;
for (int i = 0; i < n; i++) {
if (lx <= point[i].first && point[i].first <= rx && ly <= point[i].second && point[i].second <= ry) {
cout << "Yes" << endl;
exit(0);
}
}
}
cout << "No" << endl;
return 0;
}