#P1408B. Arrays Sum
Arrays Sum
No submission language available for this problem.
Description
You are given a non-decreasing array of non-negative integers . Also you are given a positive integer .
You want to find non-decreasing arrays of non-negative integers , such that:
- The size of is equal to for all .
- For all , . In the other word, array is the sum of arrays .
- The number of different elements in the array is at most for all .
Find the minimum possible value of , or report that there is no possible .
The first line contains one integer (): the number of test cases.
The first line of each test case contains two integers , (, ).
The second line contains integers (, ).
For each test case print a single integer: the minimum possible value of . If there is no such , print .
Input
The first line contains one integer (): the number of test cases.
The first line of each test case contains two integers , (, ).
The second line contains integers (, ).
Output
For each test case print a single integer: the minimum possible value of . If there is no such , print .
Samples
Note
In the first test case, there is no possible , because all elements of all arrays should be equal to . But in this case, it is impossible to get as the sum of zeros.
In the second test case, we can take . is the smallest possible value of .
In the third test case, we can take and . It's easy to see, that for all and the number of different elements in and in is equal to (so it is at most ). It can be proven that is the smallest possible value of .