이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx,avx2,fma")
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define OYY LLONG_MAX
#define mod 998244353
#define faster ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
#define FOR for(int i=1;i<=n;i++)
#define mid (start+end)/2
#define lim 2505
#define fi first
#define se second
int r,c;
vector<int> v[lim];
int dp[lim][lim];
inline int f(int x,int y,int tx,int ty){
if(x>r || y>c)return 0;
if(x==tx && y<=ty)return 1;
if(~dp[x][y])return dp[x][y];
int cev=0;
for(auto a:v[x]){
if(a<y || a>ty)continue;
cev+=f(x+1,a,tx,ty);
}
return dp[x][y]=cev;
}
int32_t main(){
faster
int n;cin>>r>>c>>n;
FOR{
int x,y;cin>>x>>y;
v[x].push_back(y);
}
int q;cin>>q;
while(q--){
int x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
for(int i=1;i<=r;i++){
for(int j=1;j<=c;j++){
dp[i][j]=-1;
}
}
int tut=f(x1,y1,x2,y2);
if(tut)cout<<"Yes"<<'\n';
else cout<<"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... |