#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define a first
#define b second
#define pb push_back
#define endl '\n'
int aa[100001];
int bb[100001];
int par[100001][20];
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,q;
cin>>n>>q;
vector<pair<int,pair<int,int>>> ss;
for(int i=0;i<n;i++){
cin>>aa[i]>>bb[i];
ss.pb({aa[i],{0,i}});
ss.pb({bb[i],{1,i}});
}
sort(ss.begin(),ss.end());
set<pair<int,int>> cur;
for(auto j:ss){
while(cur.size()){
if((*cur.begin()).a<j.a){
cur.erase(cur.begin());
}
else{
break;
}
}
if(j.b.a==0){
cur.insert({bb[j.b.b],j.b.b});
}
else{
par[j.b.b][0]=-1;
cur.erase({bb[j.b.b],j.b.b});
if(cur.size()){
assert(cur.size()==1);
auto jj=cur.end();
jj--;
if((*jj).a>j.a){
int no=(*jj).b;
if(no==j.b.b){
continue;
}
par[j.b.b][0]=no;
}
}
cur.insert({bb[j.b.b],j.b.b});
}
}
/* for(int i=0;i<n;i++){
cout<<par[i][0]<<",";
}
cout<<endl;*/
for(int j=1;j<20;j++){
for(int i=0;i<n;i++){
if(par[i][j-1]==-1){
par[i][j]=-1;
}
else{
par[i][j]=par[par[i][j-1]][j-1];
}
}
}
for(int ii=0;ii<q;ii++){
int l,r;
cin>>l>>r;
l--;
r--;
if(l==r){
cout<<0<<endl;
continue;
}
if(bb[r]<bb[l]){
cout<<"impossible"<<endl;
continue;
}
int su=0;
int cur=l;
for(int j=19;j>=0;j--){
if(par[cur][j]>=0){
if(bb[par[cur][j]]<bb[r]){
su+=(1<<j);
cur=par[cur][j];
}
}
}
while(true){
if(par[cur][0]==-1){
su=-1;
break;
}
cur=par[cur][0];
su++;
if(cur==r){
break;
}
if(aa[r]<=bb[cur] and bb[r]>=bb[cur]){
su++;
break;
}
su=-1;
break;
}
if(su==-1){
cout<<"impossible"<<endl;
continue;
}
cout<<su<<endl;
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
84 ms |
11964 KB |
Output is correct |
3 |
Correct |
96 ms |
11904 KB |
Output is correct |
4 |
Correct |
122 ms |
11936 KB |
Output is correct |
5 |
Correct |
99 ms |
12020 KB |
Output is correct |
6 |
Correct |
98 ms |
12048 KB |
Output is correct |
7 |
Correct |
100 ms |
12196 KB |
Output is correct |
8 |
Correct |
80 ms |
12600 KB |
Output is correct |
9 |
Correct |
81 ms |
12432 KB |
Output is correct |
10 |
Correct |
106 ms |
12288 KB |
Output is correct |
11 |
Incorrect |
100 ms |
12312 KB |
Output isn't correct |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
468 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
91 ms |
11912 KB |
Output is correct |
2 |
Correct |
99 ms |
11952 KB |
Output is correct |
3 |
Correct |
116 ms |
11928 KB |
Output is correct |
4 |
Correct |
84 ms |
12588 KB |
Output is correct |
5 |
Correct |
109 ms |
12308 KB |
Output is correct |
6 |
Runtime error |
40 ms |
7044 KB |
Execution killed with signal 6 |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
212 KB |
Output is correct |
2 |
Correct |
84 ms |
11964 KB |
Output is correct |
3 |
Correct |
96 ms |
11904 KB |
Output is correct |
4 |
Correct |
122 ms |
11936 KB |
Output is correct |
5 |
Correct |
99 ms |
12020 KB |
Output is correct |
6 |
Correct |
98 ms |
12048 KB |
Output is correct |
7 |
Correct |
100 ms |
12196 KB |
Output is correct |
8 |
Correct |
80 ms |
12600 KB |
Output is correct |
9 |
Correct |
81 ms |
12432 KB |
Output is correct |
10 |
Correct |
106 ms |
12288 KB |
Output is correct |
11 |
Incorrect |
100 ms |
12312 KB |
Output isn't correct |
12 |
Halted |
0 ms |
0 KB |
- |