A11364 | Monsters Attack!
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are playing a computer game. The current level of this game can be modeled as a straight line. Your character is in point $0$ of this line. There are $n$ monsters trying to kill your character; the $i$ -th monster has health equal to $a_i$ and is initially in the point $x_i$ .
Every second, the following happens:
- first, you fire up to $k$ bullets at monsters. Each bullet targets exactly one monster and decreases its health by $1$ . For each bullet, you choose its target arbitrary (for example, you can fire all bullets at one monster, fire all bullets at different monsters, or choose any other combination). Any monster can be targeted by a bullet, regardless of its position and any other factors;
- then, all alive monsters with health $0$ or less die;
- then, all alive monsters move $1$ point closer to you (monsters to the left of you increase their coordinates by $1$ , monsters to the right of you decrease their coordinates by $1$ ). If any monster reaches your character (moves to the point $0$ ), you lose.
Can you survive and kill all $n$ monsters without letting any of them reach your character?
Every second, the following happens:
- first, you fire up to $k$ bullets at monsters. Each bullet targets exactly one monster and decreases its health by $1$ . For each bullet, you choose its target arbitrary (for example, you can fire all bullets at one monster, fire all bullets at different monsters, or choose any other combination). Any monster can be targeted by a bullet, regardless of its position and any other factors;
- then, all alive monsters with health $0$ or less die;
- then, all alive monsters move $1$ point closer to you (monsters to the left of you increase their coordinates by $1$ , monsters to the right of you decrease their coordinates by $1$ ). If any monster reaches your character (moves to the point $0$ ), you lose.
Can you survive and kill all $n$ monsters without letting any of them reach your character?
输入格式
The first line of the input contains one integer $t$ ( $1 \le t \le 3 \cdot 10^4$ ) — the number of test cases.
Each test case consists of three lines:
- the first line contains two integers $n$ and $k$ ( $1 \le n \le 3 \cdot 10^5$ ; $1 \le k \le 2 \cdot 10^9$ );
- the second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ );
- the third line contains $n$ integers $x_1, x_2, \dots, x_n$ ( $-n \le x_1 < x_2 < x_3 < \dots < x_n \le n$ ; $x_i \ne 0$ ).
Additional constraint on the input: the sum of $n$ over all test cases does not exceed $3 \cdot 10^5$ .
Each test case consists of three lines:
- the first line contains two integers $n$ and $k$ ( $1 \le n \le 3 \cdot 10^5$ ; $1 \le k \le 2 \cdot 10^9$ );
- the second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ );
- the third line contains $n$ integers $x_1, x_2, \dots, x_n$ ( $-n \le x_1 < x_2 < x_3 < \dots < x_n \le n$ ; $x_i \ne 0$ ).
Additional constraint on the input: the sum of $n$ over all test cases does not exceed $3 \cdot 10^5$ .
输出格式
For each test case, print YES if you can kill all $n$ monsters before they reach your character, or NO otherwise.
You can output each letter of the answer in any case (upper or lower). For example, the strings yEs, yes, Yes, and YES will all be recognized as positive responses.
You can output each letter of the answer in any case (upper or lower). For example, the strings yEs, yes, Yes, and YES will all be recognized as positive responses.
输入输出样例
输入 #1
5 3 2 1 2 3 -1 2 3 2 1 1 1 -1 1 4 10 3 4 2 5 -3 -2 1 3 5 3 2 1 3 2 5 -3 -2 3 4 5 2 1 1 2 1 2
输出 #1
YES NO YES YES NO
In the first example, you can act as follows:
- during the $1$ -st second, fire $1$ bullet at the $1$ -st monster and $1$ bullet at the $3$ -rd monster. Then the $1$ -st monster dies, the $2$ -nd and the $3$ -rd monster move closer;
- during the $2$ -nd second, fire $2$ bullets at the $2$ -nd monster. Then the $2$ -nd monster dies, the $3$ -rd monster moves closer;
- during the $3$ -rd second, fire $2$ bullets at the $3$ -rd monster. Then the $3$ -rd monster dies.
In the second example, you can fire only $1$ bullet, so you can kill only one of the two monsters during the $1$ -st second. Then, the remaining monster moves closer and kills your character.
- during the $1$ -st second, fire $1$ bullet at the $1$ -st monster and $1$ bullet at the $3$ -rd monster. Then the $1$ -st monster dies, the $2$ -nd and the $3$ -rd monster move closer;
- during the $2$ -nd second, fire $2$ bullets at the $2$ -nd monster. Then the $2$ -nd monster dies, the $3$ -rd monster moves closer;
- during the $3$ -rd second, fire $2$ bullets at the $3$ -rd monster. Then the $3$ -rd monster dies.
In the second example, you can fire only $1$ bullet, so you can kill only one of the two monsters during the $1$ -st second. Then, the remaining monster moves closer and kills your character.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted