#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 1e5;
const int MAX_LOG_N = 16;
const int MAX_T = 2e5;
struct event {
int i, s, e;
};
int prv[MAX_LOG_N + 1][MAX_N + 1];
event events[MAX_N + 1];
map<int, int> nrm;
bool canSwitch( event a, event b ) {
return (b.s <= a.e && a.e <= b.e);
}
int main() {
int n, q;
cin >> n >> q;
for ( int i = 1; i <= n; i++ ) {
cin >> events[i].s >> events[i].e;
nrm[events[i].s] = nrm[events[i].e] = 1;
events[i].i = i + 1;
}
int t = 0;
for ( auto p: nrm )
nrm[p.first] = ++t;
for ( int i = 1; i <= n; i++ ) {
events[i].s = nrm[events[i].s];
events[i].e = nrm[events[i].e];
}
for ( int i = 1; i <= n; i++ ) {
prv[0][i] = i;
for ( int j = 1; j <= n; j++ ) {
if ( canSwitch( events[j], events[i] ) ) {
if ( events[j].s < events[prv[0][i]].s )
prv[0][i] = j;
}
}
}
for ( int p = 1; (1 << p) <= n; p++ ) {
for ( int i = 1; i <= n; i++ )
prv[p][i] = prv[p - 1][prv[p - 1][i]];
}
while ( q-- ) {
int s, e, x = 1;
cin >> s >> e;
for ( int p = log2( n ); p >= 0; p-- ) {
if ( !canSwitch( events[s], events[prv[p][e]] ) ) {
e = prv[p][e];
x += (1 << p);
}
}
e = prv[0][e];
x++;
if ( s == e )
cout << 0 << "\n";
else if ( canSwitch( events[s], events[e] ) )
cout << x << "\n";
else
cout << "impossible\n";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4440 KB |
Output is correct |
2 |
Execution timed out |
1569 ms |
7256 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
2396 KB |
Output is correct |
2 |
Correct |
1 ms |
4444 KB |
Output is correct |
3 |
Incorrect |
4 ms |
6744 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
2396 KB |
Output is correct |
2 |
Correct |
1 ms |
4444 KB |
Output is correct |
3 |
Incorrect |
4 ms |
6744 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
2396 KB |
Output is correct |
2 |
Correct |
1 ms |
4444 KB |
Output is correct |
3 |
Incorrect |
4 ms |
6744 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1553 ms |
7112 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4440 KB |
Output is correct |
2 |
Execution timed out |
1569 ms |
7256 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |