이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n, m, k, t;
ll d[5007][5007];
char a[5007][5007];
void clear_me(){
for(int i = 0; i <= n; i++)
for(int j = 0; j <= m;j ++)
d[i][j] = 0;
}
int main(){
cin >> n >> m >> k;
for(int i = 0; i <= n; i++)
for(int j = 0; j <= m; j++)
a[i][j] = 'B';
for(int i = 0; i < k; i++){
ll aa, bb;
cin >> aa >> bb;
a[aa][bb] = 'G';
}
cin >> t;
while(t--){
clear_me();
ll x1, y1, x2, y2;
cin >> x1 >> y1 >> x2 >> y2;
d[x1][y1] = 1;
for(int i = min(x1, x2); i <= max(x1, x2); i++){
for(int j = min(y1, y2); j <= max(y1, y2); j++){
if(d[i][j - 1] == 1 || (a[i - 1][j] == 'G' && d[i - 1][j] == 1))
d[i][j] = 1;
}
}
if(d[x2][y2] == 1)
cout << "Yes" << endl;
else
cout << "No" << endl;
}
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... |