#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 200005
#define fi first
#define se second
int r,c,n,timer;
vector<int> v[lim];
vector<pair<int,int>> vy;
int xm[lim],ym[lim];
int tut[lim];
map<int,int> mp;
set<int> st;
inline void solve(int q){
FOR{
st.insert(xm[i]);
}
for(auto x:st){
mp[x]=++timer;
tut[timer]=x;
}
FOR{
v[mp[xm[i]]].push_back(ym[i]);
}
for(int i=1;i<=timer;i++){
sort(v[i].begin(),v[i].end());
}
while(q--){
int x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
if(mp.find(x1)==mp.end()){
cout<<"No"<<'\n';
continue;
}
int tut=lower_bound(v[mp[x1]].begin(),v[mp[x1]].end(),y1)-v[mp[x1]].begin();
if(tut>=v[mp[x1]].size()){
cout<<"No"<<'\n';
continue;
}
if(v[mp[x1]][tut]<=y2){
cout<<"Yes"<<'\n';
}
else cout<<"No"<<'\n';
}
}
int32_t main(){
faster
cin>>r>>c>>n;
FOR{
cin>>xm[i]>>ym[i];
vy.push_back({xm[i],ym[i]});
}
sort(vy.begin(),vy.end());
int q;cin>>q;
if(q<=5000){
while(q--){
int x1,y1,x2,y2;cin>>x1>>y1>>x2>>y2;
bool stop=0;
for(int i=0;i<vy.size();i++){
//cout<<x1<<" "<<y1<<endl;
if(vy[i].fi<x1){
continue;
}
if(vy[i].fi==x1 && y1<=vy[i].se){
x1++;
y1=vy[i].se;
}
if(x1==x2 && y1<=y2){
stop=1;
break;
}
}
if(stop){
cout<<"Yes"<<'\n';
}
else cout<<"No"<<'\n';
}
}
else{
solve(q);
}
return 0;
}
Compilation message
trampoline.cpp: In function 'void solve(long long int)':
trampoline.cpp:57:9: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
57 | if(tut>=v[mp[x1]].size()){
| ~~~^~~~~~~~~~~~~~~~~~
trampoline.cpp: In function 'int32_t main()':
trampoline.cpp:84:16: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
84 | for(int i=0;i<vy.size();i++){
| ~^~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
10076 KB |
200 token(s): yes count is 21, no count is 179 |
2 |
Correct |
5 ms |
10076 KB |
200 token(s): yes count is 70, no count is 130 |
3 |
Correct |
4 ms |
9820 KB |
197 token(s): yes count is 25, no count is 172 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
456 ms |
14924 KB |
4000 token(s): yes count is 99, no count is 3901 |
2 |
Correct |
488 ms |
15816 KB |
4000 token(s): yes count is 91, no count is 3909 |
3 |
Correct |
405 ms |
14804 KB |
4000 token(s): yes count is 4000, no count is 0 |
4 |
Correct |
483 ms |
14960 KB |
4000 token(s): yes count is 1991, no count is 2009 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
168 ms |
16016 KB |
200000 token(s): yes count is 110486, no count is 89514 |
2 |
Correct |
147 ms |
16316 KB |
200000 token(s): yes count is 114664, no count is 85336 |
3 |
Correct |
167 ms |
16120 KB |
200000 token(s): yes count is 86232, no count is 113768 |
4 |
Correct |
225 ms |
16384 KB |
200000 token(s): yes count is 94603, no count is 105397 |
5 |
Correct |
219 ms |
16028 KB |
200000 token(s): yes count is 94148, no count is 105852 |
6 |
Correct |
409 ms |
24252 KB |
200000 token(s): yes count is 97163, no count is 102837 |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
13 ms |
9816 KB |
expected YES, found NO [1403rd token] |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
401 ms |
26644 KB |
expected NO, found YES [23rd token] |
2 |
Halted |
0 ms |
0 KB |
- |