This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define dbgv(v) cout<<#v<<" = "; f(i,0,v.size()) cout<<v[i]<<" "; cout<<endl
#define dbga(a,x,y) cout<<#a<<" = "; f(i,x,y) cout<<a[i]<<" "; cout<<endl
#define erorp(x) cout<<#x<<"={"<<x.F<<" , "<<x.S<<"}"<<endl
#define eror(x) cout<<#x<<'='<<(x)<<endl
#define f_(i,a,b) for(int i=a;i>=b;i--)
#define f(i,a,b) for(int i=a;i<b;i++)
#define nb(x) __builtin_popcount(x)
#define all(v) v.begin(),v.end()
#define bit(n,k) (((n)>>(k))&1)
#define Add(x,y) x=(x+y)%mod
#define maxm(a,b) a=max(a,b)
#define minm(a,b) a=min(a,b)
#define lst(x) x[x.size()-1]
#define sz(x) int(x.size())
#define mp make_pair
#define ll long long
#define pb push_back
#define S second
#define F first
const int N=1e5+99,lg=20;
int n,q,s[N],t[N],par[N][lg];
int32_t main(){
ios:: sync_with_stdio(0), cin.tie(0), cout.tie(0);
cin>>n>>q;
f(i,1,n+1){
cin>>s[i]>>t[i];
par[i][0]=i;
}
f(i,1,n+1){
f(j,1,n+1){
if(s[i]<=t[j] && t[j]<=t[i] && s[j]<s[par[i][0]]){
par[i][0]=j;
}
}
}
f(i,1,n+1){
f(l,1,lg){
par[i][l]=par[par[i][l-1]][l-1];
}
}
while(q--){
int u,v;
cin>>u>>v;
if(u==v){
cout<<0<<'\n';
continue ;
}
if(s[v]<=t[u]){
if(t[u]<=t[v]){
cout<<1<<'\n';
}
else{
cout<<"impossible"<<'\n';
}
continue ;
}
int now=v,ans=1;
for(int l=lg-1;l>=0;l--){
if(t[u]<s[par[now][l]]){
ans+=(1<<l);
now=par[now][l];
}
}
if(t[u]<s[par[now][0]] && par[now][0]!=now) assert(0);
while(t[u]<s[now]){
if(par[now][0]==now) break ;
now=par[now][0];
ans++;
}
//ans++,now=par[now][0];
if(s[now]<=t[u]){
cout<<ans<<'\n';
}
else{
cout<<"impossible"<<'\n';
}
}
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |