CF1348B.Phoenix and Beauty

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Phoenix loves beautiful arrays. An array is beautiful if all its subarrays of length kk have the same sum. A subarray of an array is any sequence of consecutive elements.

Phoenix currently has an array aa of length nn . He wants to insert some number of integers, possibly zero, into his array such that it becomes beautiful. The inserted integers must be between 11 and nn 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 tt ( 1t501 \le t \le 50 ) — the number of test cases.

The first line of each test case contains two integers nn and kk ( 1kn1001 \le k \le n \le 100 ).

The second line of each test case contains nn space-separated integers ( 1ain1 \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 mm ( nm104n \le m \le 10^4 ). You don't need to minimize mm .

The second line should contain mm space-separated integers ( 1bin1 \le b_i \le n ) — a beautiful array that Phoenix can obtain after inserting some, possibly zero, integers into his array aa . You may print integers that weren't originally in array aa .

If there are multiple solutions, print any. It's guaranteed that if we can make array aa beautiful, we can always make it with resulting length no more than 10410^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 aa beautiful by inserting the integer 11 at index 33 (in between the two existing 22 s). Now, all subarrays of length k=2k=2 have the same sum 33 . There exists many other possible solutions, for example:

  • 2,1,2,1,2,12, 1, 2, 1, 2, 1
  • 1,2,1,2,1,21, 2, 1, 2, 1, 2

In the second test case, the array is already beautiful: all subarrays of length k=3k=3 have the same sum 55 .

In the third test case, it can be shown that we cannot insert numbers to make array aa beautiful.

In the fourth test case, the array bb shown is beautiful and all subarrays of length k=4k=4 have the same sum 1010 . There exist other solutions also.

首页