306300: CF1175E. Minimal Segment Cover
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Minimal Segment Cover
题意翻译
- 给定 $n$ 个线段,每个线段形如 $[l,r]$。 - $m$ 次询问,每次询问给出 $x,y$,求至少选多少个线段才能使这些线段的并能包含线段 $[x,y]$。 - $1\le n,m\le 2\times 10^5$,$0\le l<r\le 5\times 10^5$,$0\le x<y\le 5\times 10^5$。题目描述
You are given $ n $ intervals in form $ [l; r] $ on a number line. You are also given $ m $ queries in form $ [x; y] $ . What is the minimal number of intervals you have to take so that every point (not necessarily integer) from $ x $ to $ y $ is covered by at least one of them? If you can't choose intervals so that every point from $ x $ to $ y $ is covered, then print -1 for that query.输入输出格式
输入格式
The first line contains two integers $ n $ and $ m $ ( $ 1 \le n, m \le 2 \cdot 10^5 $ ) — the number of intervals and the number of queries, respectively. Each of the next $ n $ lines contains two integer numbers $ l_i $ and $ r_i $ ( $ 0 \le l_i < r_i \le 5 \cdot 10^5 $ ) — the given intervals. Each of the next $ m $ lines contains two integer numbers $ x_i $ and $ y_i $ ( $ 0 \le x_i < y_i \le 5 \cdot 10^5 $ ) — the queries.
输出格式
Print $ m $ integer numbers. The $ i $ -th number should be the answer to the $ i $ -th query: either the minimal number of intervals you have to take so that every point (not necessarily integer) from $ x_i $ to $ y_i $ is covered by at least one of them or -1 if you can't choose intervals so that every point from $ x_i $ to $ y_i $ is covered.
输入输出样例
输入样例 #1
2 3
1 3
2 4
1 3
1 4
3 4
输出样例 #1
1
2
1
输入样例 #2
3 4
1 3
1 3
4 5
1 2
1 3
1 4
1 5
输出样例 #2
1
1
-1
-1