#P1406A. Subset Mex
Subset Mex
No submission language available for this problem.
Description
Given a set of integers (it can contain equal elements).
You have to split it into two subsets and (both of them can contain equal elements or be empty). You have to maximize the value of .
Here of a set denotes the smallest non-negative integer that doesn't exist in the set. For example:
- ( for empty set)
The set is splitted into two subsets and if for any integer number the number of occurrences of into this set is equal to the sum of the number of occurrences of into and the number of occurrences of into .
The input consists of multiple test cases. The first line contains an integer () — the number of test cases. The description of the test cases follows.
The first line of each test case contains an integer () — the size of the set.
The second line of each testcase contains integers () — the numbers in the set.
For each test case, print the maximum value of .
Input
The input consists of multiple test cases. The first line contains an integer () — the number of test cases. The description of the test cases follows.
The first line of each test case contains an integer () — the size of the set.
The second line of each testcase contains integers () — the numbers in the set.
Output
For each test case, print the maximum value of .
Samples
Note
In the first test case, is a possible choice.
In the second test case, is a possible choice.
In the third test case, is a possible choice.
In the fourth test case, is a possible choice.