C. Paprika and Permutation

C. Paprika and Permutation

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Paprika loves permutations. She has an array a1,a2,…,ana1,a2,…,an. She wants to make the array a permutation of integers 11 to nn.

In order to achieve this goal, she can perform operations on the array. In each operation she can choose two integers ii (1≤i≤n1≤i≤n) and xx (x>0x>0), then perform ai:=aimodxai:=aimodx (that is, replace aiai by the remainder of aiai divided by xx). In different operations, the chosen ii and xx can be different.

Determine the minimum number of operations needed to make the array a permutation of integers 11 to nn. If it is impossible, output −1−1.

A permutation is an array consisting of nn distinct integers from 11 to nn in arbitrary order. For example, [2,3,1,5,4][2,3,1,5,4] is a permutation, but [1,2,2][1,2,2] is not a permutation (22 appears twice in the array) and [1,3,4][1,3,4] is also not a permutation (n=3n=3 but there is 44 in the array).

Input

Each test contains multiple test cases. The first line contains a single integer tt (1≤t≤1041≤t≤104) — the number of test cases. Description of the test cases follows.

The first line of each test case contains an integer nn (1≤n≤1051≤n≤105).

The second line of each test case contains nn integers a1,a2,…,ana1,a2,…,an. (1≤ai≤1091≤ai≤109).

It is guaranteed that the sum of nn over all test cases does not exceed 2⋅1052⋅105.

Output

For each test case, output the minimum number of operations needed to make the array a permutation of integers 11 to nn, or −1−1 if it is impossible.

Example

input

Copy

4
2
1 7
3
1 5 4
4
12345678 87654321 20211218 23571113
9
1 2 3 4 18 19 5 6 7

output

Copy

1
-1
4
2

Note

For the first test, the only possible sequence of operations which minimizes the number of operations is:

  • Choose i=2i=2, x=5x=5. Perform a2:=a2mod5=2a2:=a2mod5=2.

For the second test, it is impossible to obtain a permutation of integers from 11 to nn.

不好说,直接上代码!

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;
int a[100010];
int tong[200010];
const int mm=1e9;
int main(){
	int t;
	scanf("%d",&t);
	while(t--){
		memset(a,0,sizeof(a));
		memset(tong,0,sizeof(tong));
		int n;
		scanf("%d",&n);
		int cnt=0;
		for(int i=1;i<=n;++i){
			scanf("%d",&a[i]);
			if(a[i]<=n&&tong[a[i]]==0){
				tong[a[i]]=1;
				a[i]=mm;
				cnt++;
			}
		}
		sort(a+1,a+n+1);
		int flag=1;
		cnt=n-cnt;
		int j=1;
		for(int i=1;i<=n&&j<=cnt;++i){
			if(tong[i])continue;
			if(a[j]<=2*i){
				flag=0;
				printf("-1\n");
				break;
			}
			++j;
		}		
		if(flag){			
			printf("%d\n",cnt);
		}
	}
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值