304133: CF793F. Julia the snail

Memory Limit:512 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Julia the snail

题意翻译

有一个长为 $n$ 的杆,上面有 $m$ 条绳子,每条绳子可以让蜗牛从 $l_i$ 爬到 $r_i$(中途不能离开),保证 $r_i$ 各不相同。蜗牛也可以自然下落。 现在有 $q$ 次询问,询问 $x$ 出发,途中高度不能低于 $x$ 或高于 $y$,问最高能爬到的位置。 $n,m,q\leq 10^5$。

题目描述

After hard work Igor decided to have some rest. He decided to have a snail. He bought an aquarium with a slippery tree trunk in the center, and put a snail named Julia into the aquarium. Igor noticed that sometimes Julia wants to climb onto the trunk, but can't do it because the trunk is too slippery. To help the snail Igor put some ropes on the tree, fixing the lower end of the $ i $ -th rope on the trunk on the height $ l_{i} $ above the ground, and the higher end on the height $ r_{i} $ above the ground. For some reason no two ropes share the same position of the higher end, i.e. all $ r_{i} $ are distinct. Now Julia can move down at any place of the trunk, and also move up from the lower end of some rope to its higher end. Igor is proud of his work, and sometimes think about possible movements of the snail. Namely, he is interested in the following questions: «Suppose the snail is on the trunk at height $ x $ now. What is the highest position on the trunk the snail can get on if it would never be lower than $ x $ or higher than $ y $ ?» Please note that Julia can't move from a rope to the trunk before it reaches the higher end of the rope, and Igor is interested in the highest position on the tree trunk. Igor is interested in many questions, and not always can answer them. Help him, write a program that answers these questions.

输入输出格式

输入格式


The first line contains single integer $ n $ ( $ 1<=n<=100000 $ ) — the height of the trunk. The second line contains single integer $ m $ ( $ 1<=m<=100000 $ ) — the number of ropes. The next $ m $ lines contain information about the ropes. The $ i $ -th of these lines contains two integers $ l_{i} $ and $ r_{i} $ ( $ 1<=l_{i}<=r_{i}<=n $ ) — the heights on which the lower and the higher ends of the $ i $ -th rope are fixed, respectively. It is guaranteed that all $ r_{i} $ are distinct. The next line contains single integer $ q $ ( $ 1<=q<=100000 $ ) — the number of questions. The next $ q $ lines contain information about the questions. Each of these lines contain two integers $ x $ and $ y $ ( $ 1<=x<=y<=n $ ), where $ x $ is the height where Julia starts (and the height Julia can't get lower than), and $ y $ is the height Julia can't get higher than.

输出格式


For each question print the maximum reachable for Julia height.

输入输出样例

输入样例 #1

8
4
1 2
3 4
2 5
6 7
5
1 2
1 4
1 6
2 7
6 8

输出样例 #1

2
2
5
5
7

输入样例 #2

10
10
3 7
1 4
1 6
5 5
1 1
3 9
7 8
1 2
3 3
7 10
10
2 4
1 7
3 4
3 5
2 8
2 5
5 5
3 5
7 7
3 10

输出样例 #2

2
7
3
3
2
2
5
3
7
10

说明

The picture of the first sample is on the left, the picture of the second sample is on the right. Ropes' colors are just for clarity, they don't mean anything. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF793F/fd0920e125cd0c2131a4cdbb7a6c682c972642f8.png)

Input

题意翻译

有一个长为 $n$ 的杆,上面有 $m$ 条绳子,每条绳子可以让蜗牛从 $l_i$ 爬到 $r_i$(中途不能离开),保证 $r_i$ 各不相同。蜗牛也可以自然下落。 现在有 $q$ 次询问,询问 $x$ 出发,途中高度不能低于 $x$ 或高于 $y$,问最高能爬到的位置。 $n,m,q\leq 10^5$。

加入题单

算法标签: