#include <iostream>
#include <vector>
#include <algorithm>
#include <queue>
using namespace std;
struct event {
int st, en, id;
};
const int maxn = 100010;
int nxt[maxn][20];
vector<int> g[maxn];
int bfs(int from, int to) {
int d[maxn];
d[from] = 1;
queue<int> q;
q.push(from);
while (!q.empty()) {
int x = q.front();
q.pop();
for (int i : g[x]) {
if (d[i] == 0) {
q.push(i);
d[i] = d[x] + 1;
}
}
}
return d[to];
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int n, q;
cin >> n >> q;
vector<event> e(n+1);
for (int i = 1; i <= n; i++) {
cin >> e[i].st >> e[i].en;
e[i].id = i;
}
/*e.push_back({ (int)1e9+1, (int)1e9 + 1 });
for (int i = 0; i < 20; i++) {
nxt[n + 1][i] = n + 1;
}
vector<int> pos(n + 1);
sort(e.begin()+1, e.end(), [](event& a, event& b) {return a.en < b.en || (a.en==b.en && a.st < b.st); });
int mn = n + 1;
for (int i = n; i > 0; i--) {
pos[e[i].id] = i;
/*int l = i, r = n + 2;
while (l + 1 < r) {
int m = (l + r) / 2;
if (e[m].st <= e[i].en)l = m;
else r = m;
}
nxt[i][0] = (e[mn].st <= e[i].en ? mn : i);
for (int j = 1; j < 20; j++) {
nxt[i][j] = nxt[nxt[i][j - 1]][j - 1];
}
if (e[i].st < e[mn].st)mn = i;
}*/
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= n; j++) {
if (j == i)continue;
if (e[i].st <= e[j].en && e[j].en <= e[i].en)g[i].push_back(j);
}
}
for (int i = 0; i < q; i++) {
int s, E;
cin >> s >> E;
int x = bfs(s, E);
if (x)cout << x - 1 << '\n';
else cout << "impossible\n";
//s = pos[s];
//E = pos[E];
/*if (E == s) {
cout << "0\n";
continue;
}
if (e[s].en == e[E].en) {
cout << "1\n";
continue;
}
if (E < s) {
cout << "impossible\n";
continue;
}
int ans = 0;
for (int i = 19; i >= 0; i--) {
if (nxt[s][i] < E) {
ans += (1 << i);
s = nxt[s][i];
}
}
if (nxt[s][0] != E) {
cout << "impossible\n";
continue;
}
cout << ans + 1 << '\n';*/
}
}
Compilation message
events.cpp:54:3: warning: "/*" within comment [-Wcomment]
54 | /*int l = i, r = n + 2;
|
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1540 ms |
3932 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
3028 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |