Tubby the doggu, likes sets which are closed. Your task is to help him/her solve a problem.
Let's first lay out a few definitions:
Definition 1: A set S is said to closed with respect to a prime number P if and only if:
Note that can be equal.
As an example, the set is closed with respect to prime .
Definition 2: : Closure of a set S is defined to be the smallest closed set containing the set S.
As an example, for and set ,
Definition 3: : Partition of a set S is a set of non-empty subsets of S such that every element of S is in exactly one of these subsets. Moreover, the length of the partition is the number of non-empty subsets required.
As an example, for , is a partition of set S of length 2 as there are two non-empty subsets and each element of S is included in exactly one subset. Also set S itself is a partition of S of length 1.
Now the task is that you are given a prime number P and an array A of N integers , in which the integer is denoted by , , .
You have to partition the set of indices into a partition of minimum length such that if then i and j must be in different sets of the partition.
Here, , .
Note: x denotes a set containing a single element x.
Input Format
The first line will consist of the integer T denoting the number of test cases.
For each of the T test cases, the first line will consist of two integers P and N, where P is a prime number and N denotes the number of elements.
Next line will consist of N integers, where the integer denotes the element , .
Output Format
For each of the T test cases, output a single integer denoting the minimum length of the partition.
Constraints
,P is guaranteed to be prime.
Sum of N over all testcases
For the first test case P=2 and ( {1} )= {1} and as so min length of partition is 1.
For the second test case P=3 and there are two numbers 1 and 2.
( {1} )= {1} and ( {2} ) = {} . Clearly , so we can't include 1 and 2 in the same partition.Therefore .