Submission #987872

# Submission time Handle Problem Language Result Execution time Memory
987872 2024-05-23T17:52:29 Z user736482 Trampoline (info1cup20_trampoline) C++17
11 / 100
1238 ms 59068 KB
#include<bits/stdc++.h>
using namespace std;

int R,C,N,T,a,b,c,d;
vector<pair<int,int>> ziel;
vector<int> point[200007];
pair<int,int>nast[200007];
int nast2[200007];
map<int,vector<int>>zielone;
map<pair<int,int>,int>mp;

int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cin>>R>>C>>N;
    for(int i=0;i<N;i++){
        cin>>a>>b;
        mp[{a,b}]=i;
        ziel.push_back({a,b});
        zielone[a].push_back(b);
    }
    for(auto i=zielone.begin();i!=zielone.end();i++){
        sort((*i).second.begin(),(*i).second.end());
    }
    //cout<<zielone[2][0]<<" "<<zielone[2][1]<<"     ";
    for(int i=0;i<N;i++){
        //cout<<ziel[i].first<<" "<<ziel[i].second<<"   ";
        if((int)zielone[ziel[i].first+1].size()==0 || zielone[ziel[i].first+1][(int)zielone[ziel[i].first+1].size()-1]<ziel[i].second){
            nast[i]=ziel[i];
            nast2[i]=i;
        }
        else{
            nast[i].first=ziel[i].first+1;
            nast[i].second=*lower_bound(zielone[ziel[i].first+1].begin(),zielone[ziel[i].first+1].end(),ziel[i].second);
            //cout<<" "<<(int)zielone[ziel[i].first].size()<<"   ";
        
            nast2[i]=mp[{ziel[i].first+1,*lower_bound(zielone[ziel[i].first+1].begin(),zielone[ziel[i].first+1].end(),ziel[i].second)}];
        }
        point[i].push_back(nast2[i]);
        //cout<<"  "<<nast[i].first<<" "<<nast[i].second<<" "<<nast2[i]<<" "<<i<<"    ";
    }
    for(int j=2;j<N+7;j=j<<1){
        for(int i=0;i<N;i++){
            point[i].push_back( point[point[i][point[i].size()-1]][point[point[i][point[i].size()-1]].size()-1] );
        
                        
        }
       // if(j==4)
        //    return 0;
    }
    //cout<<"\n\n\n";
    cin>>T;
    for(int i=0;i<T;i++){
        cin>>a>>b>>c>>d;
        if(a>c){
            cout<<"No\n";
            continue;
        }
        if(a==c){
            if(b<=d)
                cout<<"Yes\n";
            else
                cout<<"No\n";
            continue;
        }
        c--;
        if(zielone[a].empty() || zielone[a][zielone[a].size()-1]<b){
            if(a==c+1 && b<=d)
                cout<<"Yes\n";
            else
                cout<<"No\n";
            continue;
        }
        int ak=mp[{a,*lower_bound(zielone[a].begin(),zielone[a].end(),b)}];
        int logarithm=0;
        int ak2=1;
        while(ak2*2<=c-a){
            ak2*=2;
            logarithm++;
        }
        //cout<<ak<<" ";
        while(a!=c){
            ak=point[ak][logarithm];
            a+=ak2;
            while(ak2>c-a){
                ak2/=2;
                logarithm--;
            }
        }
        if((ziel[ak].first==c) && (ziel[ak].second<=d))
            cout<<"Yes\n";
        else
            cout<<"No\n";
    }
}
# Verdict Execution time Memory Grader output
1 Incorrect 11 ms 8540 KB expected YES, found NO [1st token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 462 ms 51456 KB expected YES, found NO [3rd token]
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 497 ms 51164 KB 200000 token(s): yes count is 110486, no count is 89514
2 Correct 579 ms 51132 KB 200000 token(s): yes count is 114664, no count is 85336
3 Correct 583 ms 51392 KB 200000 token(s): yes count is 86232, no count is 113768
4 Correct 718 ms 51904 KB 200000 token(s): yes count is 94603, no count is 105397
5 Correct 897 ms 51972 KB 200000 token(s): yes count is 94148, no count is 105852
6 Correct 1238 ms 57952 KB 200000 token(s): yes count is 97163, no count is 102837
# Verdict Execution time Memory Grader output
1 Runtime error 17 ms 16216 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1034 ms 59068 KB expected YES, found NO [1st token]
2 Halted 0 ms 0 KB -