A12882 | Standard Free2play
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are playing a game where your character should overcome different obstacles. The current problem is to come down from a cliff. The cliff has height $h$ , and there is a moving platform on each height $x$ from $1$ to $h$ .
Each platform is either hidden inside the cliff or moved out. At first, there are $n$ moved out platforms on heights $p_1, p_2, \dots, p_n$ . The platform on height $h$ is moved out (and the character is initially standing there).
If you character is standing on some moved out platform on height $x$ , then he can pull a special lever, which switches the state of two platforms: on height $x$ and $x - 1$ . In other words, the platform you are currently standing on will hide in the cliff and the platform one unit below will change it state: it will hide if it was moved out or move out if it was hidden. In the second case, you will safely land on it. Note that this is the only way to move from one platform to another.
Your character is quite fragile, so it can safely fall from the height no more than $2$ . In other words falling from the platform $x$ to platform $x - 2$ is okay, but falling from $x$ to $x - 3$ (or lower) is certain death.
Sometimes it's not possible to come down from the cliff, but you can always buy (for donate currency) several magic crystals. Each magic crystal can be used to change the state of any single platform (except platform on height $h$ , which is unaffected by the crystals). After being used, the crystal disappears.
What is the minimum number of magic crystal you need to buy to safely land on the $0$ ground level?
Each platform is either hidden inside the cliff or moved out. At first, there are $n$ moved out platforms on heights $p_1, p_2, \dots, p_n$ . The platform on height $h$ is moved out (and the character is initially standing there).
If you character is standing on some moved out platform on height $x$ , then he can pull a special lever, which switches the state of two platforms: on height $x$ and $x - 1$ . In other words, the platform you are currently standing on will hide in the cliff and the platform one unit below will change it state: it will hide if it was moved out or move out if it was hidden. In the second case, you will safely land on it. Note that this is the only way to move from one platform to another.
Your character is quite fragile, so it can safely fall from the height no more than $2$ . In other words falling from the platform $x$ to platform $x - 2$ is okay, but falling from $x$ to $x - 3$ (or lower) is certain death.
Sometimes it's not possible to come down from the cliff, but you can always buy (for donate currency) several magic crystals. Each magic crystal can be used to change the state of any single platform (except platform on height $h$ , which is unaffected by the crystals). After being used, the crystal disappears.
What is the minimum number of magic crystal you need to buy to safely land on the $0$ ground level?
输入格式
The first line contains one integer $q$ ( $1 \le q \le 100$ ) — the number of queries. Each query contains two lines and is independent of all other queries.
The first line of each query contains two integers $h$ and $n$ ( $1 \le h \le 10^9$ , $1 \le n \le \min(h, 2 \cdot 10^5)$ ) — the height of the cliff and the number of moved out platforms.
The second line contains $n$ integers $p_1, p_2, \dots, p_n$ ( $h = p_1 > p_2 > \dots > p_n \ge 1$ ) — the corresponding moved out platforms in the descending order of their heights.
The sum of $n$ over all queries does not exceed $2 \cdot 10^5$ .
The first line of each query contains two integers $h$ and $n$ ( $1 \le h \le 10^9$ , $1 \le n \le \min(h, 2 \cdot 10^5)$ ) — the height of the cliff and the number of moved out platforms.
The second line contains $n$ integers $p_1, p_2, \dots, p_n$ ( $h = p_1 > p_2 > \dots > p_n \ge 1$ ) — the corresponding moved out platforms in the descending order of their heights.
The sum of $n$ over all queries does not exceed $2 \cdot 10^5$ .
输出格式
For each query print one integer — the minimum number of magic crystals you have to spend to safely come down on the ground level (with height $0$ ).
输入输出样例
输入 #1
4 3 2 3 1 8 6 8 7 6 5 3 2 9 6 9 8 5 4 3 1 1 1 1
输出 #1
0 1 2 0
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted