310816: CF1893B. Neutral Tonality

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

Description

B. Neutral Tonalitytime limit per test3 secondsmemory limit per test512 megabytesinputstandard inputoutputstandard output

You are given an array $a$ consisting of $n$ integers, as well as an array $b$ consisting of $m$ integers.

Let $\text{LIS}(c)$ denote the length of the longest increasing subsequence of array $c$. For example, $\text{LIS}([2, \underline{1}, 1, \underline{3}])$ = $2$, $\text{LIS}([\underline{1}, \underline{7}, \underline{9}])$ = $3$, $\text{LIS}([3, \underline{1}, \underline{2}, \underline{4}])$ = $3$.

You need to insert the numbers $b_1, b_2, \ldots, b_m$ into the array $a$, at any positions, in any order. Let the resulting array be $c_1, c_2, \ldots, c_{n+m}$. You need to choose the positions for insertion in order to minimize $\text{LIS}(c)$.

Formally, you need to find an array $c_1, c_2, \ldots, c_{n+m}$ that simultaneously satisfies the following conditions:

  • The array $a_1, a_2, \ldots, a_n$ is a subsequence of the array $c_1, c_2, \ldots, c_{n+m}$.
  • The array $c_1, c_2, \ldots, c_{n+m}$ consists of the numbers $a_1, a_2, \ldots, a_n, b_1, b_2, \ldots, b_m$, possibly rearranged.
  • The value of $\text{LIS}(c)$ is the minimum possible among all suitable arrays $c$.
Input

Each test contains multiple test cases. The first line contains a single integer $t$ $(1 \leq t \leq 10^4)$ — the number of test cases. The description of the test cases follows.

The first line of each test case contains two integers $n, m$ $(1 \leq n \leq 2 \cdot 10^5, 1 \leq m \leq 2 \cdot 10^5)$ — the length of array $a$ and the length of array $b$.

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 elements of the array $a$.

The third line of each test case contains $m$ integers $b_1, b_2, \ldots, b_m$ $(1 \leq b_i \leq 10^9)$ — the elements of the array $b$.

It is guaranteed that the sum of $n$ over all test cases does not exceed $2\cdot 10^5$, and the sum of $m$ over all test cases does not exceed $2\cdot 10^5$.

Output

For each test case, output $n + m$ numbers — the elements of the final array $c_1, c_2, \ldots, c_{n+m}$, obtained after the insertion, such that the value of $\text{LIS}(c)$ is minimized. If there are several answers, you can output any of them.

ExampleInput
7
2 1
6 4
5
5 5
1 7 2 4 5
5 4 1 2 7
1 9
7
1 2 3 4 5 6 7 8 9
3 2
1 3 5
2 4
10 5
1 9 2 3 8 1 4 7 2 9
7 8 5 4 6
2 1
2 2
1
6 1
1 1 1 1 1 1
777
Output
6 5 4
1 1 7 7 2 2 4 4 5 5
9 8 7 7 6 5 4 3 2 1
1 3 5 2 4
1 9 2 3 8 8 1 4 4 7 7 2 9 6 5
2 2 1
777 1 1 1 1 1 1
Note

In the first test case, $\text{LIS}(a) = \text{LIS}([6, 4]) = 1$. We can insert the number $5$ between $6$ and $4$, then $\text{LIS}(c) = \text{LIS}([6, 5, 4]) = 1$.

In the second test case, $\text{LIS}([\underline{1}, 7, \underline{2}, \underline{4}, \underline{5}])$ = $4$. After the insertion, $c = [1, 1, 7, 7, 2, 2, 4, 4, 5, 5]$. It is easy to see that $\text{LIS}(c) = 4$. It can be shown that it is impossible to achieve $\text{LIS}(c)$ less than $4$.

Output

**题目大意**:

给定两个整数数组 `a` 和 `b`,数组 `a` 包含 `n` 个整数,数组 `b` 包含 `m` 个整数。定义 `LIS(c)` 为数组 `c` 的最长递增子序列的长度。你需要将数组 `b` 的元素插入到数组 `a` 中,可以插入到任何位置,以任何顺序,形成一个新数组 `c`。目标是使得 `LIS(c)` 的值最小。输出插入后的数组 `c`。

**输入数据格式**:

第一行包含一个整数 `t`,表示测试用例的数量。每个测试用例包含三行:

1. 第一行包含两个整数 `n` 和 `m`,分别表示数组 `a` 和 `b` 的长度。
2. 第二行包含 `n` 个整数,表示数组 `a` 的元素。
3. 第三行包含 `m` 个整数,表示数组 `b` 的元素。

**输出数据格式**:

对于每个测试用例,输出一行,包含 `n + m` 个整数,表示插入后的数组 `c` 的元素,使得 `LIS(c)` 最小。如果有多个答案,输出其中任意一个即可。

**示例**:

输入:
```
7
2 1
6 4
5
5 5
1 7 2 4 5
5 4 1 2 7
1 9
7
1 2 3 4 5 6 7 8 9
3 2
1 3 5
2 4
10 5
1 9 2 3 8 1 4 7 2 9
7 8 5 4 6
2 1
2 2
1
6 1
1 1 1 1 1 1
777
```

输出:
```
6 5 4
1 1 7 7 2 2 4 4 5 5
9 8 7 7 6 5 4 3 2 1
1 3 5 2 4
1 9 2 3 8 8 1 4 4 7 7 2 9 6 5
2 2 1
777 1 1 1 1 1 1
```

**注意**:

- `LIS(a)` 表示数组 `a` 的最长递增子序列的长度。
- 插入元素后,数组 `c` 的最长递增子序列的长度 `LIS(c)` 需要尽可能小。
- 数组 `a` 和 `b` 的元素可以任意重新排列。**题目大意**: 给定两个整数数组 `a` 和 `b`,数组 `a` 包含 `n` 个整数,数组 `b` 包含 `m` 个整数。定义 `LIS(c)` 为数组 `c` 的最长递增子序列的长度。你需要将数组 `b` 的元素插入到数组 `a` 中,可以插入到任何位置,以任何顺序,形成一个新数组 `c`。目标是使得 `LIS(c)` 的值最小。输出插入后的数组 `c`。 **输入数据格式**: 第一行包含一个整数 `t`,表示测试用例的数量。每个测试用例包含三行: 1. 第一行包含两个整数 `n` 和 `m`,分别表示数组 `a` 和 `b` 的长度。 2. 第二行包含 `n` 个整数,表示数组 `a` 的元素。 3. 第三行包含 `m` 个整数,表示数组 `b` 的元素。 **输出数据格式**: 对于每个测试用例,输出一行,包含 `n + m` 个整数,表示插入后的数组 `c` 的元素,使得 `LIS(c)` 最小。如果有多个答案,输出其中任意一个即可。 **示例**: 输入: ``` 7 2 1 6 4 5 5 5 1 7 2 4 5 5 4 1 2 7 1 9 7 1 2 3 4 5 6 7 8 9 3 2 1 3 5 2 4 10 5 1 9 2 3 8 1 4 7 2 9 7 8 5 4 6 2 1 2 2 1 6 1 1 1 1 1 1 1 777 ``` 输出: ``` 6 5 4 1 1 7 7 2 2 4 4 5 5 9 8 7 7 6 5 4 3 2 1 1 3 5 2 4 1 9 2 3 8 8 1 4 4 7 7 2 9 6 5 2 2 1 777 1 1 1 1 1 1 ``` **注意**: - `LIS(a)` 表示数组 `a` 的最长递增子序列的长度。 - 插入元素后,数组 `c` 的最长递增子序列的长度 `LIS(c)` 需要尽可能小。 - 数组 `a` 和 `b` 的元素可以任意重新排列。

加入题单

上一题 下一题 算法标签: