310315: CF1814C. Search in Parallel

Memory Limit:512 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

C. Search in Paralleltime limit per test2 secondsmemory limit per test512 megabytesinputstandard inputoutputstandard output

Suppose you have $n$ boxes. The $i$-th box contains infinitely many balls of color $i$. Sometimes you need to get a ball with some specific color; but you're too lazy to do it yourself.

You have bought two robots to retrieve the balls for you. Now you have to program them. In order to program the robots, you have to construct two lists $[a_1, a_2, \dots, a_k]$ and $[b_1, b_2, \dots, b_{n-k}]$, where the list $a$ represents the boxes assigned to the first robot, and the list $b$ represents the boxes assigned to the second robot. Every integer from $1$ to $n$ must be present in exactly one of these lists.

When you request a ball with color $x$, the robots work as follows. Each robot looks through the boxes that were assigned to that robot, in the order they appear in the list. The first robot spends $s_1$ seconds analyzing the contents of a box; the second robot spends $s_2$. As soon as one of the robots finds the box with balls of color $x$ (and analyzes its contents), the search ends. The search time is the number of seconds from the beginning of the search until one of the robots finishes analyzing the contents of the $x$-th box. If a robot analyzes the contents of all boxes assigned to it, it stops searching.

For example, suppose $s_1 = 2$, $s_2 = 3$, $a = [4, 1, 5, 3, 7]$, $b = [2, 6]$. If you request a ball with color $3$, the following happens:

  • initially, the first robot starts analyzing the box $4$, and the second robot starts analyzing the box $2$;
  • at the end of the $2$-nd second, the first robot finishes analyzing the box $4$. It is not the box you need, so the robot continues with the box $1$;
  • at the end of the $3$-rd second, the second robot finishes analyzing the box $2$. It is not the box you need, so the robot continues with the box $6$;
  • at the end of the $4$-th second, the first robot finishes analyzing the box $1$. It is not the box you need, so the robot continues with the box $5$;
  • at the end of the $6$-th second, the first robot finishes analyzing the box $5$. It is not the box you need, so the robot continues with the box $3$. At the same time, the second robot finishes analyzing the box $6$. It is not the box you need, and the second robot has analyzed all the boxes in its list, so that robot stops searching;
  • at the end of the $8$-th second, the first robot finishes analyzing the box $3$. It is the box you need, so the search ends;
  • so, the search time is $8$ seconds.

You know that you are going to request a ball of color $1$ $r_1$ times, a ball of color $2$ $r_2$ times, and so on. You want to construct the lists $a$ and $b$ for the robots in such a way that the total search time over all requests is the minimum possible.

Input

The first line contains one integer $t$ ($1 \le t \le 10^4$) — the number of test cases.

Each test case consists of two lines:

  • the first line contains three integers $n$, $s_1$, $s_2$ ($2 \le n \le 2 \cdot 10^5$; $1 \le s_1, s_2 \le 10$);
  • the second line contains $n$ integers $r_1, r_2, \dots, r_n$ ($1 \le r_i \le 10^6$).

Additional constraint on the input: the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$.

Output

For each test case, print two lines. The first line should contain the list $a$, the second line — the list $b$. Each list has to be printed as follows: first, print the number of elements in it, and then the elements themselves.

If there are multiple answers, you may print any of them.

ExampleInput
3
7 3 1
8 6 4 4 4 1 7
5 1 10
1 1 1 1 1
8 1 1
4 5 6 8 1 7 3 2
Output
2 5 6
5 1 7 2 4 3
5 4 3 5 2 1
0
4 4 2 7 5
4 6 3 1 8

Input

题意翻译

  现在有 $n$ 个盒子,编号为 $i$ 的盒子中有无数个颜色为 $i$ 的小球。你有时候需要取用一种颜色的小球,但是你太懒了,于是你买了两个机器人去做这件事。   这两个机器人各自拥有一个序列 $[a_1,a_2,\cdots, a_k]$ 和 $[b_1,b_2,\cdots, b_{n - k}]$,在这两个序列中数字 $1$ 到 $n$ 都出现且仅出现一次。当一个机器人接到取小球的命令是,它会按照如下步骤操作: - 从序列中取出第一个数,扫描数字对应盒子中的小球。 - 若当前盒子中的小球是目标颜色,就同时停止两个机器人的扫描。 - 否则取出下一个数继续扫描。   其中第一个机器人扫描一个盒子需要 $s_1$ 秒,第二个机器人扫描一个盒子需要 $s_2$ 秒。   现在你知道了每一种球询问的次数,请给出一种可能的两个机器人的数组的方案。   输出时对于每一个机器人,先输出数组内元素个数,再依次输出数组内的元素。

Output

题目大意:
你有很多盒子,每个盒子里有无限多个相应颜色的球。你有两个机器人帮你取球。需要为这两个机器人编程,构建两个列表a和b,分别代表分配给第一个和第二个机器人的盒子。当你请求一个颜色为x的球时,机器人会按照列表顺序检查分配给它的盒子,第一个机器人花费s1秒检查一个盒子,第二个机器人花费s2秒。当一个机器人找到颜色为x的球时,搜索结束。需要构建列表a和b,使得所有请求的总搜索时间最小。

输入输出数据格式:
输入:
- 第一行包含一个整数t(1≤t≤10^4),表示测试用例的数量。
- 每个测试用例包含两行:
- 第一行包含三个整数n、s1、s2(2≤n≤2×10^5;1≤s1、s2≤10)。
- 第二行包含n个整数r1、r2、...、rn(1≤ri≤10^6)。
- 所有测试用例的n之和不超过2×10^5。

输出:
- 对于每个测试用例,输出两行,第一行是列表a,第二行是列表b。每个列表先输出元素数量,然后输出元素。

示例:
输入:
```
3
7 3 1
8 6 4 4 4 1 7
5 1 10
1 1 1 1 1
8 1 1
4 5 6 8 1 7 3 2
```
输出:
```
2 5 6
5 1 7 2 4 3
5 4 3 5 2 1
0
4 4 2 7 5
4 6 3 1 8
```题目大意: 你有很多盒子,每个盒子里有无限多个相应颜色的球。你有两个机器人帮你取球。需要为这两个机器人编程,构建两个列表a和b,分别代表分配给第一个和第二个机器人的盒子。当你请求一个颜色为x的球时,机器人会按照列表顺序检查分配给它的盒子,第一个机器人花费s1秒检查一个盒子,第二个机器人花费s2秒。当一个机器人找到颜色为x的球时,搜索结束。需要构建列表a和b,使得所有请求的总搜索时间最小。 输入输出数据格式: 输入: - 第一行包含一个整数t(1≤t≤10^4),表示测试用例的数量。 - 每个测试用例包含两行: - 第一行包含三个整数n、s1、s2(2≤n≤2×10^5;1≤s1、s2≤10)。 - 第二行包含n个整数r1、r2、...、rn(1≤ri≤10^6)。 - 所有测试用例的n之和不超过2×10^5。 输出: - 对于每个测试用例,输出两行,第一行是列表a,第二行是列表b。每个列表先输出元素数量,然后输出元素。 示例: 输入: ``` 3 7 3 1 8 6 4 4 4 1 7 5 1 10 1 1 1 1 1 8 1 1 4 5 6 8 1 7 3 2 ``` 输出: ``` 2 5 6 5 1 7 2 4 3 5 4 3 5 2 1 0 4 4 2 7 5 4 6 3 1 8 ```

加入题单

算法标签: