이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <map>
using namespace std;
int r, c, n;
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
cin >> r >> c >> n;
vector <vector <int>> zielone;
for (int i = 0; i < n; i++) {
int a, b;
cin >> a >> b;
zielone.push_back({});
zielone[i].push_back(a);
zielone[i].push_back(b);
}
if (n > 5000) {
map <int, int> mapa;
for (int i = 0; i < n; i++) {
if (mapa[zielone[i][0]]) {
if (mapa[zielone[i][0]] > zielone[i][1]) {
mapa[zielone[i][0]] = zielone[i][1];
}
}
else {
mapa[zielone[i][0]] = zielone[i][1];
}
}
int t;
cin >> t;
for (int i = 0; i < t; i++) {
int x, y, x2, y2;
cin >> x >> y >> x2 >> y2;
if (mapa[x]) {
if (mapa[x] <= y2) {
cout << "Yes" << endl;
}
else {
cout << "No" << endl;
}
}
else {
cout << "No" << endl;
}
}
}
else {
int jaki[n];
for (int i = 0; i < n; i++) {
jaki[i] = -1;
for (int j = 0; j < n; j++) {
if (zielone[j][0] == zielone[i][0] + 1 && zielone[j][1] >= zielone[i][1]) {
if (jaki[i] == -1) {
jaki[i] = j;
}
else {
if (zielone[j][1] < zielone[jaki[i]][1]) {
jaki[i] = j;
}
}
}
}
}
int t;
cin >> t;
for (int pyt = 0; pyt < t; pyt++) {
int x, y, x2, y2;
cin >> x >> y >> x2 >> y2;
int x_s = x;
int a = -1, b = 1e9 + 7;
int pole = -1;
for (int i = 0; i < n; i++) {
if (zielone[i][0] == x && zielone[i][1] >= y) {
if (a == - 1 || zielone[i][1] < b) {
a = zielone[i][0];
b = zielone[i][1];
pole = i;
}
}
}
if (x == x2 && y <= y2) {
cout << "Yes" << endl;
}
else if (a == -1) {
cout << "No" << endl;
}
else {
x = a + 1; y = b;
while (x < x2 && y <= y2) {
if (jaki[pole] == -1) {
break;
}
else {
x = zielone[jaki[pole]][0] + 1; y = zielone[jaki[pole]][1];
pole = jaki[pole];
}
}
if ((x == x2 || (x - 1 == x2 && x != a)) && y <= y2) {
cout << "Yes" << endl;
}
else {
cout << "No" << endl;
}
}
}
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
trampoline.cpp: In function 'int main()':
trampoline.cpp:70:17: warning: unused variable 'x_s' [-Wunused-variable]
70 | int x_s = x;
| ^~~
# | 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... |