/* Author : Mychecksdead */
#include<bits/stdc++.h>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
typedef long long int ll;
typedef long double ld;
#define MOD1 (1000000000+7)
#define MOD (998244353)
#define PI 3.1415926535
#define pb push_back
#define setp() cout << setprecision(15)
#define all(x) x.begin(), x.end()
#define debug(x) cerr << #x << " is " << x << '\n';
const int N = 1e6+100, M = 1e5+10, F = 2147483646, K = 20;
int n, q, t[N][2], up[N][K];
array<int, 3> a[N], b[N], c[N]; // original, sorted by l, sorted by r;
vector<int> all;
void build(int l, int r, int k){
if(l==r){
t[k][0] = MOD;
t[k][1] = 0;
return;
}
int m = (l+r)>>1;
build(l, m, k<<1);
build(m+1, r, k<<1|1);
t[k][0] = MOD;
t[k][1] = 0;
}
int get(int l, int r, int p, int k, bool f){
if(p > r || l > p) return (f ? 0 : MOD);
if(l == r) return t[k][f];
int m = (l+r)>>1;
if(f)
return max({t[k][f], get(l, m, p, k<<1, f), get(m+1, r, p, k<<1|1, f)});
else
return min({t[k][f], get(l, m, p, k<<1, f), get(m+1, r, p, k<<1|1, f)});
}
void update(int l, int r, int ql, int qr, int k, int val, bool f){
if(ql > r || l > qr) return;
if(ql <= l && r <= qr){
if(f)
t[k][f] = max(val, t[k][f]);
else
t[k][f] = min(val, t[k][f]);
return;
}
int m = (l+r)>>1;
update(l, m, ql, qr, k<<1, val, f);
update(m+1, r, ql, qr, k<<1|1, val, f);
}
bool comp(const array<int, 3> &a, const array<int, 3> &b){
if(a[1] != b[1])
return a[1] < b[1];
return a[0] < b[0];
}
void solve(){
cin >> n >> q;
for(int i = 1; i <= n; ++i){
cin >> a[i][0] >> a[i][1];
all.pb(a[i][0]);
all.pb(a[i][1]);
a[i][2] = i;
}
sort(all(all));
unique(all(all));
build(1, 2*n, 1);
for(int i = 1; i <= n; ++i){
a[i][0] = lower_bound(all(all), a[i][0]) - all.begin() + 1;
a[i][1] = lower_bound(all(all), a[i][1]) - all.begin() + 1;
b[i] = a[i];
c[i] = a[i];
}
sort(b + 1, b + 1 + n);
sort(c + 1, c + 1 + n, comp);
for(int i = 1; i <= n; ++i){
update(1, 2*n, b[i][0], b[i][1], 1, i, 0);
update(1, 2*n, c[i][0], c[i][1], 1, i, 1);
a[c[i][2]][2] = i;
}
for(int i = 1; i <= n; ++i){
int p = get(1, 2*n, c[i][1], 1, 1);
up[i][0] = (p == i ? -1 : p);
}
for(int j = 1; j < K; ++j) for(int i = 1; i <= n; ++i){
int next = up[i][j - 1];
if(next == -1)
up[i][j] = -1;
else
up[i][j] = up[next][j - 1];
}
for(;q--;){
int start, end; cin >> start >> end;
if(start == end) cout << "0\n";
else if(a[start][1] > a[end][1]) cout << "impossible\n";
else{
int v = a[start][2], ans = 0;
for(int j = K - 1; j >= 0; --j){
if(up[v][j] != -1 && c[up[v][j]][1] < a[end][0]) v = up[v][j], ans += (1<<j);
}
int last = get(1, 2*n, a[end][0], 1, 0);
if(b[last][0] > c[v][1]) cout << "impossible\n";
else cout << ans + 2 << '\n';
}
}
}
int main(){
cin.tie(0); ios::sync_with_stdio(0);
int T = 1, aa;
// cin >> T;aa=T;
while(T--){
// cout << "Case #" << aa-T << ": ";
solve();
}
return 0;
}
Compilation message
events.cpp: In function 'int main()':
events.cpp:124:16: warning: unused variable 'aa' [-Wunused-variable]
124 | int T = 1, aa;
| ^~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Incorrect |
1 ms |
340 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
174 ms |
17336 KB |
Output is correct |
2 |
Correct |
195 ms |
17332 KB |
Output is correct |
3 |
Incorrect |
174 ms |
17272 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
340 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |