A14622 | Gamer Hemose
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
One day, Ahmed\_Hossam went to Hemose and said "Let's solve a gym contest!". Hemose didn't want to do that, as he was playing Valorant, so he came up with a problem and told it to Ahmed to distract him. Sadly, Ahmed can't solve it... Could you help him?
There is an Agent in Valorant, and he has $n$ weapons. The $i$ -th weapon has a damage value $a_i$ , and the Agent will face an enemy whose health value is $H$ .
The Agent will perform one or more moves until the enemy dies.
In one move, he will choose a weapon and decrease the enemy's health by its damage value. The enemy will die when his health will become less than or equal to $0$ . However, not everything is so easy: the Agent can't choose the same weapon for $2$ times in a row.
What is the minimum number of times that the Agent will need to use the weapons to kill the enemy?
There is an Agent in Valorant, and he has $n$ weapons. The $i$ -th weapon has a damage value $a_i$ , and the Agent will face an enemy whose health value is $H$ .
The Agent will perform one or more moves until the enemy dies.
In one move, he will choose a weapon and decrease the enemy's health by its damage value. The enemy will die when his health will become less than or equal to $0$ . However, not everything is so easy: the Agent can't choose the same weapon for $2$ times in a row.
What is the minimum number of times that the Agent will need to use the weapons to kill the enemy?
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ $(1 \leq t \leq 10^5)$ . Description of the test cases follows.
The first line of each test case contains two integers $n$ and $H$ $(2 \leq n \leq 10^3, 1 \leq H \leq 10^9)$ — the number of available weapons and the initial health value of the enemy.
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ $(1 \leq a_i \leq 10^9)$ — the damage values of the weapons.
It's guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $H$ $(2 \leq n \leq 10^3, 1 \leq H \leq 10^9)$ — the number of available weapons and the initial health value of the enemy.
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ $(1 \leq a_i \leq 10^9)$ — the damage values of the weapons.
It's guaranteed that the sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
输出格式
For each test case, print a single integer — the minimum number of times that the Agent will have to use the weapons to kill the enemy.
输入输出样例
输入 #1
3 2 4 3 7 2 6 4 2 3 11 2 1 7
输出 #1
1 2 3
In the first test case, the Agent can use the second weapon, making health value of the enemy equal to $4-7=-3$ . $-3 \le 0$ , so the enemy is dead, and using weapon $1$ time was enough.
In the second test case, the Agent can use the first weapon first, and then the second one. After this, the health of enemy will drop to $6-4-2 = 0$ , meaning he would be killed after using weapons $2$ times.
In the third test case, the Agent can use the weapons in order (third, first, third), decreasing the health value of enemy to $11 - 7 - 2 - 7 = -5$ after using the weapons $3$ times. Note that we can't kill the enemy by using the third weapon twice, as even though $11-7-7<0$ , it's not allowed to use the same weapon twice in a row.
In the second test case, the Agent can use the first weapon first, and then the second one. After this, the health of enemy will drop to $6-4-2 = 0$ , meaning he would be killed after using weapons $2$ times.
In the third test case, the Agent can use the weapons in order (third, first, third), decreasing the health value of enemy to $11 - 7 - 2 - 7 = -5$ after using the weapons $3$ times. Note that we can't kill the enemy by using the third weapon twice, as even though $11-7-7<0$ , it's not allowed to use the same weapon twice in a row.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted