A14710 | Armor and Weapons
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Monocarp plays a computer game. There are $n$ different sets of armor and $m$ different weapons in this game. If a character equips the $i$ -th set of armor and wields the $j$ -th weapon, their power is usually equal to $i + j$ ; but some combinations of armor and weapons synergize well. Formally, there is a list of $q$ ordered pairs, and if the pair $(i, j)$ belongs to this list, the power of the character equipped with the $i$ -th set of armor and wielding the $j$ -th weapon is not $i + j$ , but $i + j + 1$ .
Initially, Monocarp's character has got only the $1$ -st armor set and the $1$ -st weapon. Monocarp can obtain a new weapon or a new set of armor in one hour. If he wants to obtain the $k$ -th armor set or the $k$ -th weapon, he must possess a combination of an armor set and a weapon that gets his power to $k$ or greater. Of course, after Monocarp obtains a weapon or an armor set, he can use it to obtain new armor sets or weapons, but he can go with any of the older armor sets and/or weapons as well.
Monocarp wants to obtain the $n$ -th armor set and the $m$ -th weapon. What is the minimum number of hours he has to spend on it?
Initially, Monocarp's character has got only the $1$ -st armor set and the $1$ -st weapon. Monocarp can obtain a new weapon or a new set of armor in one hour. If he wants to obtain the $k$ -th armor set or the $k$ -th weapon, he must possess a combination of an armor set and a weapon that gets his power to $k$ or greater. Of course, after Monocarp obtains a weapon or an armor set, he can use it to obtain new armor sets or weapons, but he can go with any of the older armor sets and/or weapons as well.
Monocarp wants to obtain the $n$ -th armor set and the $m$ -th weapon. What is the minimum number of hours he has to spend on it?
输入格式
The first line contains two integers $n$ and $m$ ( $2 \le n, m \le 2 \cdot 10^5$ ) — the number of armor sets and the number of weapons, respectively.
The second line contains one integer $q$ ( $0 \le q \le \min(2 \cdot 10^5, nm)$ ) — the number of combinations that synergize well.
Then $q$ lines follow, the $i$ -th line contains two integers $a_i$ and $b_i$ ( $1 \le a_i \le n$ ; $1 \le b_i \le m$ ) meaning that the $a_i$ -th armor set synergizes well with the $b_i$ -th weapon. All pairs $(a_i, b_i)$ are distinct.
The second line contains one integer $q$ ( $0 \le q \le \min(2 \cdot 10^5, nm)$ ) — the number of combinations that synergize well.
Then $q$ lines follow, the $i$ -th line contains two integers $a_i$ and $b_i$ ( $1 \le a_i \le n$ ; $1 \le b_i \le m$ ) meaning that the $a_i$ -th armor set synergizes well with the $b_i$ -th weapon. All pairs $(a_i, b_i)$ are distinct.
输出格式
Print one integer — the minimum number of hours Monocarp has to spend to obtain both the $n$ -th armor set and the $m$ -th weapon.
输入输出样例
输入 #1
3 4 0
输出 #1
3
输入 #2
3 4 2 1 1 1 3
输出 #2
2
In the first example, Monocarp can obtain the strongest armor set and the strongest weapon as follows:
1. Obtain the $2$ -nd weapon using the $1$ -st armor set and the $1$ -st weapon;
2. Obtain the $3$ -rd armor set using the $1$ -st armor set and the $2$ -nd weapon;
3. Obtain the $4$ -th weapon using the $3$ -rd armor set and the $2$ -nd weapon.
In the second example, Monocarp can obtain the strongest armor set and the strongest weapon as follows:
1. Obtain the $3$ -rd armor set using the $1$ -st armor set and the $1$ -st weapon (they synergize well, so Monocarp's power is not $2$ but $3$ );
2. Obtain the $4$ -th weapon using the $3$ -rd armor set and the $1$ -st weapon.
1. Obtain the $2$ -nd weapon using the $1$ -st armor set and the $1$ -st weapon;
2. Obtain the $3$ -rd armor set using the $1$ -st armor set and the $2$ -nd weapon;
3. Obtain the $4$ -th weapon using the $3$ -rd armor set and the $2$ -nd weapon.
In the second example, Monocarp can obtain the strongest armor set and the strongest weapon as follows:
1. Obtain the $3$ -rd armor set using the $1$ -st armor set and the $1$ -st weapon (they synergize well, so Monocarp's power is not $2$ but $3$ );
2. Obtain the $4$ -th weapon using the $3$ -rd armor set and the $1$ -st weapon.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted