Submission #892907

# Submission time Handle Problem Language Result Execution time Memory
892907 2023-12-26T07:05:25 Z yuhong Trampoline (info1cup20_trampoline) C++17
11 / 100
202 ms 42264 KB
#include <bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include<ext/pb_ds/tree_policy.hpp>
using namespace std;
using namespace __gnu_pbds;
template <typename T>
using ordered_set = tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;
#define endl '\n'
#define ll long long
#define pb push_back
#define vi vector<int>
#define vll vector<long long>
#define sz(x) (int)x.size()
#define int long long
#define float double
#define all(x) x.begin(),x.end()
#define pii pair<int,int>
#define rep(i,a,b) for (ll i = a; i<b; i++)
#define repo(i,a,b) for (int i = a; i>=b; i--)
#define fi first
#define se second
//int decrow[4] = {-1,0,1,0};
//int deccol[4] = {0,1,0,-1};
//int dp[100001][100001];
//int arr[100001];
int dy[8] = {0,  0, 1, -1, 1, -1 , 1, -1};
int dx[8] = {1, -1, 0,  0, 1, -1, -1,  1};
const int MAXN = 1e6;
const int MOD = 1e9+7;
const int INF = 1e18;
int n,c,r;
int total = 0;
int ans = 0;
vi v;
int largerThanX(set<int> &s, int x){
    auto it = s.upper_bound(x);
    if(it == s.end()) return -1; /// x is larger than everything
    return *it;
}
gp_hash_table<int,set<int>> mp;
void solve(){
  int t;
  cin>>r>>c>>n;
  for(int i = 0;i<n;i++){
	  int a,b;
	  cin>>a>>b;
	  mp[a-1].insert(b-1);
  }
  cin>>t;
  while(t--){
	  int a,b,aa,bb;
	  cin>>a>>b>>aa>>bb;
	  a--,b--,aa--,bb--;
	  //only do on bb and b
	  int place = largerThanX(mp[a],b-1);
	  if(place == -1){
		  cout<<"No"<<endl;
	  }else{
		  if(place <= bb){
			  cout<<"Yes"<<endl;
		  }else{
			  cout<<"No"<<endl;
		  }
	  }
  }
}	



int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
  int q;
  q =1;
  while(q--){
    solve();
  }
  return 0;
}





# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 860 KB expected NO, found YES [2nd token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 69 ms 10312 KB expected NO, found YES [1st token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 185 ms 10388 KB 200000 token(s): yes count is 110486, no count is 89514
2 Correct 202 ms 10320 KB 200000 token(s): yes count is 114664, no count is 85336
3 Correct 184 ms 10332 KB 200000 token(s): yes count is 86232, no count is 113768
4 Correct 192 ms 11084 KB 200000 token(s): yes count is 94603, no count is 105397
5 Correct 193 ms 10988 KB 200000 token(s): yes count is 94148, no count is 105852
6 Correct 183 ms 42264 KB 200000 token(s): yes count is 97163, no count is 102837
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 600 KB expected NO, found YES [17th token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 188 ms 35528 KB expected NO, found YES [23rd token]
2 Halted 0 ms 0 KB -