#include<bits/stdc++.h>
#define debug true
#ifdef DEVAL
#define debug false
#endif
using namespace std;
const int maxn = 1e5 + 10;
struct interval
{
int s, e, idx;
}seg[maxn];
int n, q;
pair < int, int > task[maxn];
void read()
{
cin >> n >> q;
for (int i = 1; i <= n; i ++)
{
cin >> seg[i].s >> seg[i].e;
seg[i].idx = i;
}
for (int i = 1; i <= q; i ++)
{
cin >> task[i].first >> task[i].second;
}
}
vector < int > adj[maxn];
int used[maxn], dist[5010][5010];
int my_queue[maxn];
void bfs(int start)
{
for (int i = 1; i <= n; i ++)
used[i] = -1;
used[start] = 0;
int st = 1, en = 0;
my_queue[++ en] = start;
while(st <= en)
{
int v = my_queue[st ++];
for (int u : adj[v])
{
if (used[u] == - 1)
{
used[u] = used[v] + 1;
my_queue[++ en] = u;
}
}
}
}
void build_graph()
{
for (int i = 1; i <= n; i ++)
for (int j = 1; j <= n; j ++)
{
if (seg[j].s <= seg[i].e && seg[i].e <= seg[j].e)
adj[i].push_back(j);
}
}
void answer_queries()
{
for (int i = 1; i <= q; i ++)
{
if (dist[task[i].first][task[i].second] == -1)
cout << "impossible" << endl;
else
cout << dist[task[i].first][task[i].second] << endl;
}
}
void precalc()
{
for (int v = 1; v <= n; v ++)
{
bfs(v);
for (int i = 1; i <= n; i ++)
dist[v][i] = used[i];
}
}
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
bool cmp(interval seg1, interval seg2)
{
return seg1.s < seg2.s;
}
const int maxlog = 21;
int dp[maxlog][maxn], rev[maxn];
void solve_no_intersect()
{
sort(seg + 1, seg + n + 1, cmp);
int pt = n;
for (int i = n; i > 0; i --)
{
while(seg[pt].s > seg[i].e)
pt --;
dp[0][i] = pt;
}
for (int j = 1; j < maxlog; j ++)
for (int i = 1; i <= n; i ++)
{
dp[j][i] = dp[j - 1][dp[j - 1][i]];
}
for (int i = 1; i <= n; i ++)
rev[seg[i].idx] = i;
for (int i = 1; i <= q; i ++)
{
int S = task[i].first, E = task[i].second;
S = rev[S];
E = rev[E];
if (S > E)
{
cout << "impossible" << endl;
continue;
}
if (S == E)
{
cout << 0 << endl;
continue;
}
int jump = 0;
for (int bit = maxlog - 1; bit >= 0; bit --)
{
if (dp[bit][S] < E)
{
jump |= (1 << bit);
S = dp[bit][S];
}
}
if (dp[0][S] != E)
cout << "impossible" << endl;
else
cout << jump + 1 << endl;
}
}
void solve()
{
read();
///if (n > 1000 || q > 100)
{
solve_no_intersect();
}
/**else
{
build_graph();
precalc();
answer_queries();
} */
}
int main()
{
speed();
solve();
return 0;
}
/**
3 2
1 2
2 3
3 4
1 3
2 3
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
12636 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
12636 KB |
Output is correct |
2 |
Incorrect |
2 ms |
12636 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
12636 KB |
Output is correct |
2 |
Incorrect |
2 ms |
12636 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
12636 KB |
Output is correct |
2 |
Incorrect |
2 ms |
12636 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
148 ms |
16320 KB |
Output is correct |
2 |
Correct |
149 ms |
16464 KB |
Output is correct |
3 |
Correct |
156 ms |
16464 KB |
Output is correct |
4 |
Correct |
154 ms |
16804 KB |
Output is correct |
5 |
Correct |
154 ms |
16720 KB |
Output is correct |
6 |
Incorrect |
155 ms |
16980 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
12636 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |