A16213 | Jellyfish and Undertale
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Flowey has planted a bomb in Snowdin!
The bomb has a timer that is initially set to $b$ . Every second, the timer will decrease by $1$ . When the timer reaches $0$ , the bomb will explode! To give the residents of Snowdin enough time to evacuate, you will need to delay the bomb from exploding for as long as possible.
You have $n$ tools. Each tool can only be used at most once. If you use the $i$ -th tool, the timer will increase by $x_i$ . However, if the timer is changed to an integer larger than $a$ , the timer will be set to $a$ due to a bug.
More specifically, the following events will happen every second in the following order:
1. You will choose some (possibly none) of your tools that have not been used before. If you choose the $i$ -th tool, and the bomb's timer is currently set to $c$ , the timer will be changed to $\min(c + x_i, a)$ .
2. The timer decreases by $1$ .
3. If the timer reaches $0$ , the bomb explodes.
Jellyfish now wants to know the maximum time in seconds until the bomb explodes if the tools are used optimally.
The bomb has a timer that is initially set to $b$ . Every second, the timer will decrease by $1$ . When the timer reaches $0$ , the bomb will explode! To give the residents of Snowdin enough time to evacuate, you will need to delay the bomb from exploding for as long as possible.
You have $n$ tools. Each tool can only be used at most once. If you use the $i$ -th tool, the timer will increase by $x_i$ . However, if the timer is changed to an integer larger than $a$ , the timer will be set to $a$ due to a bug.
More specifically, the following events will happen every second in the following order:
1. You will choose some (possibly none) of your tools that have not been used before. If you choose the $i$ -th tool, and the bomb's timer is currently set to $c$ , the timer will be changed to $\min(c + x_i, a)$ .
2. The timer decreases by $1$ .
3. If the timer reaches $0$ , the bomb explodes.
Jellyfish now wants to know the maximum time in seconds until the bomb explodes if the tools are used optimally.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \leq t \leq 2000$ ). The description of the test cases follows.
The first line of each test case contains three integers $a$ , $b$ and $n$ ( $1 \leq b \leq a \leq 10^9$ , $1 \leq n \leq 100$ ) — the maximum value of the bomb's timer, the initial value of the timer of the bomb and the number of tools.
The second line of each test contains $n$ integers $x_1, x_2, \dots, x_n$ ( $1 \leq x_i \leq 10^9$ ) — the number the timer can increase by using the $i$ -th tool.
Note that the sum of $n$ over all test cases is not bounded.
The first line of each test case contains three integers $a$ , $b$ and $n$ ( $1 \leq b \leq a \leq 10^9$ , $1 \leq n \leq 100$ ) — the maximum value of the bomb's timer, the initial value of the timer of the bomb and the number of tools.
The second line of each test contains $n$ integers $x_1, x_2, \dots, x_n$ ( $1 \leq x_i \leq 10^9$ ) — the number the timer can increase by using the $i$ -th tool.
Note that the sum of $n$ over all test cases is not bounded.
输出格式
For each test case, output a single integer — the maximum time in seconds until the bomb explodes.
输入输出样例
输入 #1
2 5 3 3 1 1 7 7 1 5 1 2 5 6 8
输出 #1
9 21
Let $c$ denote the value of the bomb's timer. In the first test case:
- Second $1$ : choose tool $1$ and $2$ at this second, then $c=5$ ; the timer decreases by $1$ , then $c=4$ .
- Second $2$ : the timer decreases by $1$ , then $c=3$ .
- Second $3$ : the timer decreases by $1$ , then $c=2$ .
- Second $4$ : the timer decreases by $1$ , then $c=1$ .
- Second $5$ : choose tool $3$ , then $c=5$ ; the timer decreases by $1$ , then $c=4$ .
- Second $6$ : the timer decreases by $1$ , then $c=3$ .
- Second $7$ : the timer decreases by $1$ , then $c=2$ .
- Second $8$ : the timer decreases by $1$ , then $c=1$ .
- Second $9$ : the timer decreases by $1$ , then $c=0$ . The bomb explodes.
It can be proved that there is no way to use the tools such that the bomb explodes after more than $9$ seconds.
- Second $1$ : choose tool $1$ and $2$ at this second, then $c=5$ ; the timer decreases by $1$ , then $c=4$ .
- Second $2$ : the timer decreases by $1$ , then $c=3$ .
- Second $3$ : the timer decreases by $1$ , then $c=2$ .
- Second $4$ : the timer decreases by $1$ , then $c=1$ .
- Second $5$ : choose tool $3$ , then $c=5$ ; the timer decreases by $1$ , then $c=4$ .
- Second $6$ : the timer decreases by $1$ , then $c=3$ .
- Second $7$ : the timer decreases by $1$ , then $c=2$ .
- Second $8$ : the timer decreases by $1$ , then $c=1$ .
- Second $9$ : the timer decreases by $1$ , then $c=0$ . The bomb explodes.
It can be proved that there is no way to use the tools such that the bomb explodes after more than $9$ seconds.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted