답안 #219926

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
219926 2020-04-06T17:03:39 Z Sho10 Trampoline (info1cup20_trampoline) C++14
0 / 100
2000 ms 11000 KB
/*
ID: Sho10
LANG: C++
*/
#include <bits/stdc++.h> //Andrei Alexandru a.k.a Sho10
#define ll long long int
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define all(a) (a).begin(), (a).end()
#define sz size
#define f first
#define s second
#define pb push_back
#define er erase
#define in insert
#define mp make_pair
#define pi pair
#define rc(s) return cout<<s,0
#define endl '\n'
#define mod 1000000007
#define PI 3.14159265359
#define CODE_START  ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
using namespace std;
ll n,m,q,t,a[2505][2505],val;
pair<ll,ll>cod[200005];
map<pair<ll,ll>,ll>viz;
int32_t main(){
CODE_START;
cin>>n>>m>>val;
for(ll i=0;i<val;i++)
{
    cin>>cod[i].f>>cod[i].s;
}
ll xx,yy,xs,ys;
cin>>t;
while(t--){
    cin>>xs>>ys>>xx>>yy;
   sort(cod,cod+val);
   ll mx=0;
   for(ll i=0;i<n;i++)
   {
       if(cod[i].s>=ys&&cod[i].s<=yy&&cod[i].f==xs){
        mx=1;
       }
   }
   if(mx==1){
    cout<<"Yes"<<endl;
   }else cout<<"No"<<endl;
}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 53 ms 512 KB expected YES, found NO [1st token]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2080 ms 5368 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 104 ms 11000 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 20 ms 1024 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 103 ms 10960 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -