A10930 | Julia the snail
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
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.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted