#include <bits/stdc++.h>
#define all(v) ((v).begin(),(v).end())
#define ll long long
#define F first
#define S second
const ll mod = 1e9 + 7;
const ll mxN = 1e5 + 2;
using namespace std;
struct range{
int l,r,id;
};
bool operator<(range a,range b){
return tie(a.l,a.r,a.id) < tie(b.l,b.r,b.id);
}
bool operator==(range a,range b){
return tie(a.l,a.r,a.id) == tie(b.l,b.r,b.id);
}
range a[mxN];
range og[mxN];
signed main()
{
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0 );
int n,q;
cin >>n>>q;
for(int i = 0;i < n;i++){
cin >>a[i].l>>a[i].r;
a[i].id = i + 1;
og[i] = a[i];
}
sort(a,a + n);
while(q--){
int s,e;
cin >>s>>e;
auto x = og[s - 1],y = og[e - 1];
int ans = 0;
int i = lower_bound(a,a + n,x) - a;
int j = lower_bound(a,a + n,y) - a;
if(j - i < 0) cout<<"impossible\n";
else cout<<j - i<<'\n';
continue;
if(i > j) ans = -1;
while(i < j){
int nxt = -1;
int lt = -1;
i++;
while(i < n){
if(a[i].l <= x.r && a[i].r >= x.r && a[i].r <= y.r){
if(nxt == -1 || a[i].r >= a[nxt].r){
nxt = i;
}
lt = i;
}
if(a[i] == y) break;
i++;
}
if(nxt == -1){
ans = -1;
break;
}
x = a[nxt];
i = lt;
ans++;
}
if(ans != -1) cout<<ans<<'\n';
else cout<<"impossible\n";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
46 ms |
3156 KB |
Output is correct |
2 |
Correct |
51 ms |
3208 KB |
Output is correct |
3 |
Correct |
51 ms |
3156 KB |
Output is correct |
4 |
Incorrect |
51 ms |
3160 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
2396 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |