이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
void solve() {
int n, m, green;
cin >> n >> m >> green;
const int N = n * m;
map <int, pair <int, int>> mp, mp2;
for(int i = 0; i < green; i ++) {
int x, y;
cin >> x >> y;
x --;
y --;
mp[x] = {1, y};
}
int q;
cin >> q;
while(q --) {
pair <int, int > start, end;
cin >> start.first >> start.second >> end.first >> end.second;
if(start.first == end.first) {
cout << "Yes\n";
continue;
}
start.first --;
start.second --;
end.first --;
end.second --;
int temp = start.second;
if(mp[start.first].first == 0 or mp[start.first].second < temp) {
cout << "No\n";
goto end;
}
for(int i = start.first; i <= end.first; i ++) {
if(mp[i].first == 0 or mp[i].second < temp) {
cout << "No\n";
goto end;
}
temp = mp[i].second;
}
cout << "Yes\n";
end:;
}
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int Q = 1;
//cin >> Q;
while (Q --) {
solve();
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
trampoline.cpp: In function 'void solve()':
trampoline.cpp:7:12: warning: unused variable 'N' [-Wunused-variable]
7 | const int N = n * m;
| ^
# | 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... |