이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
bool can;
int R, C, T, N, x, y, a, b;
cin >> R >> C >> N;
unordered_map<int, vector<int>> green;
while (N--) {
cin >> x >> y;
x--; y--;
green[x].push_back(y);
}
for (int i = 0; i < R; i++) sort(green[i].begin(), green[i].end());
cin >> T;
while (T--) {
can = 1;
cin >> x >> y >> a >> b;
x--; y--; a--; b--;
if (a < x || b < y) {
cout << "No\n";
continue;
}
for (; x < a; x++) {
auto it = lower_bound(green[x].begin(), green[x].end(), y);
if (it == green[x].end()) {
can = 0;
cout << "No\n";
break;
} else if ((y = *it) > b) {
can = 0;
cout << "No\n";
break;
}
}
if (can) {
cout << "Yes\n";
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |