A14094 | 1D Sokoban
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are playing a game similar to Sokoban on an infinite number line. The game is discrete, so you only consider integer positions on the line.
You start on a position $0$ . There are $n$ boxes, the $i$ -th box is on a position $a_i$ . All positions of the boxes are distinct. There are also $m$ special positions, the $j$ -th position is $b_j$ . All the special positions are also distinct.
In one move you can go one position to the left or to the right. If there is a box in the direction of your move, then you push the box to the next position in that direction. If the next position is taken by another box, then that box is also pushed to the next position, and so on. You can't go through the boxes. You can't pull the boxes towards you.
You are allowed to perform any number of moves (possibly, zero). Your goal is to place as many boxes on special positions as possible. Note that some boxes can be initially placed on special positions.
You start on a position $0$ . There are $n$ boxes, the $i$ -th box is on a position $a_i$ . All positions of the boxes are distinct. There are also $m$ special positions, the $j$ -th position is $b_j$ . All the special positions are also distinct.
In one move you can go one position to the left or to the right. If there is a box in the direction of your move, then you push the box to the next position in that direction. If the next position is taken by another box, then that box is also pushed to the next position, and so on. You can't go through the boxes. You can't pull the boxes towards you.
You are allowed to perform any number of moves (possibly, zero). Your goal is to place as many boxes on special positions as possible. Note that some boxes can be initially placed on special positions.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 1000$ ) — the number of testcases.
Then descriptions of $t$ testcases follow.
The first line of each testcase contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the number of boxes and the number of special positions, respectively.
The second line of each testcase contains $n$ distinct integers in the increasing order $a_1, a_2, \dots, a_n$ ( $-10^9 \le a_1 < a_2 < \dots < a_n \le 10^9$ ; $a_i \neq 0$ ) — the initial positions of the boxes.
The third line of each testcase contains $m$ distinct integers in the increasing order $b_1, b_2, \dots, b_m$ ( $-10^9 \le b_1 < b_2 < \dots < b_m \le 10^9$ ; $b_i \neq 0$ ) — the special positions.
The sum of $n$ over all testcases doesn't exceed $2 \cdot 10^5$ . The sum of $m$ over all testcases doesn't exceed $2 \cdot 10^5$ .
Then descriptions of $t$ testcases follow.
The first line of each testcase contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the number of boxes and the number of special positions, respectively.
The second line of each testcase contains $n$ distinct integers in the increasing order $a_1, a_2, \dots, a_n$ ( $-10^9 \le a_1 < a_2 < \dots < a_n \le 10^9$ ; $a_i \neq 0$ ) — the initial positions of the boxes.
The third line of each testcase contains $m$ distinct integers in the increasing order $b_1, b_2, \dots, b_m$ ( $-10^9 \le b_1 < b_2 < \dots < b_m \le 10^9$ ; $b_i \neq 0$ ) — the special positions.
The sum of $n$ over all testcases doesn't exceed $2 \cdot 10^5$ . The sum of $m$ over all testcases doesn't exceed $2 \cdot 10^5$ .
输出格式
For each testcase print a single integer — the maximum number of boxes that can be placed on special positions.
输入输出样例
输入 #1
5 5 6 -1 1 5 11 15 -4 -3 -2 6 7 15 2 2 -1 1 -1000000000 1000000000 2 2 -1000000000 1000000000 -1 1 3 5 -1 1 2 -2 -1 1 2 5 2 1 1 2 10
输出 #1
4 2 0 3 1
In the first testcase you can go $5$ to the right: the box on position $1$ gets pushed to position $6$ and the box on position $5$ gets pushed to position $7$ . Then you can go $6$ to the left to end up on position $-1$ and push a box to $-2$ . At the end, the boxes are on positions $[-2, 6, 7, 11, 15]$ , respectively. Among them positions $[-2, 6, 7, 15]$ are special, thus, the answer is $4$ .
In the second testcase you can push the box from $-1$ to $-10^9$ , then the box from $1$ to $10^9$ and obtain the answer $2$ .
The third testcase showcases that you are not allowed to pull the boxes, thus, you can't bring them closer to special positions.
In the fourth testcase all the boxes are already on special positions, so you can do nothing and still obtain the answer $3$ .
In the fifth testcase there are fewer special positions than boxes. You can move either $8$ or $9$ to the right to have some box on position $10$ .
In the second testcase you can push the box from $-1$ to $-10^9$ , then the box from $1$ to $10^9$ and obtain the answer $2$ .
The third testcase showcases that you are not allowed to pull the boxes, thus, you can't bring them closer to special positions.
In the fourth testcase all the boxes are already on special positions, so you can do nothing and still obtain the answer $3$ .
In the fifth testcase there are fewer special positions than boxes. You can move either $8$ or $9$ to the right to have some box on position $10$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted