이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* author: NeroZein
* created: 01.02.2023 13:03:54
*/
#include <bits/stdc++.h>
using namespace std;
#ifdef Nero
#include "Deb.h"
#else
#define deb(...)
#endif
signed main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int r, c, n;
cin >> r >> c >> n;
map<int, set<int>> se;
for (int i = 0; i < n; ++i) {
int x, y;
cin >> x >> y;
se[x].insert(y);
}
int q;
cin >> q;
while(q--) {
int xs, ys, xf, yf;
cin >> xs >> ys >> xf >> yf;
while(yf > ys && xf > xs) {
if (se[xf-1].empty()) {
break;
}
auto it = se[xf-1].upper_bound(yf);
if (it == se[xf-1].begin()) {
break;
}
--it;
yf = *it;
--xf;
}
cout << (xf == xs && yf >= ys ? "YES" : "NO") << '\n';
}
return 0;
}
# | 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... |