A13398 | Phoenix and Beauty
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Phoenix loves beautiful arrays. An array is beautiful if all its subarrays of length $k$ have the same sum. A subarray of an array is any sequence of consecutive elements.
Phoenix currently has an array $a$ of length $n$ . He wants to insert some number of integers, possibly zero, into his array such that it becomes beautiful. The inserted integers must be between $1$ and $n$ inclusive. Integers may be inserted anywhere (even before the first or after the last element), and he is not trying to minimize the number of inserted integers.
Phoenix currently has an array $a$ of length $n$ . He wants to insert some number of integers, possibly zero, into his array such that it becomes beautiful. The inserted integers must be between $1$ and $n$ inclusive. Integers may be inserted anywhere (even before the first or after the last element), and he is not trying to minimize the number of inserted integers.
输入格式
The input consists of multiple test cases. The first line contains an integer $t$ ( $1 \le t \le 50$ ) — the number of test cases.
The first line of each test case contains two integers $n$ and $k$ ( $1 \le k \le n \le 100$ ).
The second line of each test case contains $n$ space-separated integers ( $1 \le a_i \le n$ ) — the array that Phoenix currently has. This array may or may not be already beautiful.
The first line of each test case contains two integers $n$ and $k$ ( $1 \le k \le n \le 100$ ).
The second line of each test case contains $n$ space-separated integers ( $1 \le a_i \le n$ ) — the array that Phoenix currently has. This array may or may not be already beautiful.
输出格式
For each test case, if it is impossible to create a beautiful array, print -1. Otherwise, print two lines.
The first line should contain the length of the beautiful array $m$ ( $n \le m \le 10^4$ ). You don't need to minimize $m$ .
The second line should contain $m$ space-separated integers ( $1 \le b_i \le n$ ) — a beautiful array that Phoenix can obtain after inserting some, possibly zero, integers into his array $a$ . You may print integers that weren't originally in array $a$ .
If there are multiple solutions, print any. It's guaranteed that if we can make array $a$ beautiful, we can always make it with resulting length no more than $10^4$ .
The first line should contain the length of the beautiful array $m$ ( $n \le m \le 10^4$ ). You don't need to minimize $m$ .
The second line should contain $m$ space-separated integers ( $1 \le b_i \le n$ ) — a beautiful array that Phoenix can obtain after inserting some, possibly zero, integers into his array $a$ . You may print integers that weren't originally in array $a$ .
If there are multiple solutions, print any. It's guaranteed that if we can make array $a$ beautiful, we can always make it with resulting length no more than $10^4$ .
输入输出样例
输入 #1
4 4 2 1 2 2 1 4 3 1 2 2 1 3 2 1 2 3 4 4 4 3 4 2
输出 #1
5 1 2 1 2 1 4 1 2 2 1 -1 7 4 3 2 1 4 3 2
In the first test case, we can make array $a$ beautiful by inserting the integer $1$ at index $3$ (in between the two existing $2$ s). Now, all subarrays of length $k=2$ have the same sum $3$ . There exists many other possible solutions, for example:
- $2, 1, 2, 1, 2, 1$
- $1, 2, 1, 2, 1, 2$
In the second test case, the array is already beautiful: all subarrays of length $k=3$ have the same sum $5$ .
In the third test case, it can be shown that we cannot insert numbers to make array $a$ beautiful.
In the fourth test case, the array $b$ shown is beautiful and all subarrays of length $k=4$ have the same sum $10$ . There exist other solutions also.
- $2, 1, 2, 1, 2, 1$
- $1, 2, 1, 2, 1, 2$
In the second test case, the array is already beautiful: all subarrays of length $k=3$ have the same sum $5$ .
In the third test case, it can be shown that we cannot insert numbers to make array $a$ beautiful.
In the fourth test case, the array $b$ shown is beautiful and all subarrays of length $k=4$ have the same sum $10$ . There exist other solutions also.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted