시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB66222034.483%

문제

Aristides has a random number generator. Each time he asks the random number generator, it will return a random integer between 1 to N inclusive uniformly.

Aristides' friend, Iorgos, will note the returned number one by one. Aristides would keep asking a random number until Iorgos stop him. To analyse the randomness of the random number generator, he would stop Aristides immediately after each number from 1 to N is returned at least twice.

Aristides has already asked K numbers to the random number generator. The i-th number returned by the random number generator is Ai. Since Iorgos does not stop him yet, he knows that at least one of the integer between 1 to N inclusive has not been returned at least twice.

Aristides wants to know the expected number of additional numbers to be asked until Iorgos stopped him.

입력

The first line contains an integer: T (1 ≤ T ≤ 100,000) denoting the number of testcases. The first line of each testcase contains two integers: N K (1 ≤ N ≤ 3,000; 0 ≤ K ≤ 100,000) in a line denoting the range of the returned integers and the number of integers that is already asked. The second line of each testcase contains K integers: A1 A2 ... AK (1 ≤ Ai ≤ N) in a line denoting the first K returned integers. It is guaranteed that at least one of the integer between 1 to N inclusive has not been returned at least twice. It is also guaranteed that the sum of the value K of on all testcases is not more than 100,000. 

출력

For each testcase, the output contains the expected number of additional numbers to be asked by Aristides until Iorgos stopped him, in a line. Your answer will be considered correct if the relative or absolute difference between your answer and judge's answer is not more than 10-6.

예제 입력 1

4
1 0

1 1
1
2 10
2 2 2 2 2 2 2 2 2 2
3 0

예제 출력 1

2.000000000
1.000000000
4.000000000
9.638888889

힌트

Explanation for the 1st sample case

For the first sample, the first two numbers returned by the random number generator is always 1. Therefore, by asking the random number generator twice, each number from 1 to N will be returned at least twice.

Explanation for the 2nd sample case

For the second sample, Aristides already asked one number from the random number generator. Therefore, he only need to ask for one additional number.