# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
523951 | lucri | Trampoline (info1cup20_trampoline) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
using namespace std;
int n,m,k,q;
pair<int,int>tr[200010];
int xb,yb,xe,ye;
int cb(int b,int e)
{
if(b>e)
return b;
int m=(b+e)/2;
if(tr[m].first<xb||tr[m].first==xb&&tr[m].second<=yb)
return cb(m+1,e);
return cb(b,m-1);
}
int main()
{
cin>>n>>m>>k;
for(int i=1;i<=k;++i)
{
cin>>tr[i].first>>tr[i].second;
}
sort(tr+1,tr+k+1);
tr[k+1]={1111111111,1111111111};
cin>>q;
for(q--)
{
cin>>xb>>yb>>xe>>ye;
int poz=cb(1,k);
int l=xb,c=yb;
while(l!=xe)
{
if(tr[poz].first==l)
{
++l;
c=tr[poz].second;
}
else
{
c=1111111111;
break;
}
if(l==xe||c>ye)
break;
while(tr[poz].first<l||tr[poz].first==l&&tr[poz].second<c)
++poz;
}
if(c<=ye)
cout<<"Yes"<<'\n';
else
cout<<"No"<<'\n';
}
return 0;
}