| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1027809 | vjudge1 | Trampoline (info1cup20_trampoline) | C++17 | 2045 ms | 8432 KiB |
이 제출은 이전 버전의 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 1000005
#define fi first
#define se second
vector<pair<int,int>> v;
int32_t main(){
faster
int r,c,n;cin>>r>>c>>n;
FOR{
int x,y;cin>>x>>y;
v.push_back({x,y});
}
sort(v.begin(),v.end());
int q;cin>>q;
while(q--){
int x1,y1,x2,y2;cin>>x1>>y1>>x2>>y2;
bool stop=0;
for(int i=0;i<v.size();i++){
//cout<<x1<<" "<<y1<<endl;
if(v[i].fi<x1){
continue;
}
if(v[i].fi==x1 && y1<=v[i].se){
x1++;
y1=v[i].se;
}
if(x1==x2 && y1<=y2){
stop=1;
break;
}
}
if(stop){
cout<<"Yes"<<'\n';
}
else cout<<"No"<<'\n';
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | 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... | ||||
