C - Dominated Subarray Educational Codeforces Round 76 (Rated for Div. 2)

做~自己de王妃 提交于 2019-12-03 06:13:24

Let’s call an array t dominated by value v in the next situation.
At first, array t should have at least 2 elements. Now, let’s calculate number of occurrences of each number num in t and define it as occ(num). Then t is dominated (by v) if (and only if) occ(v)>occ(v′) for any other number v′. For example, arrays [1,2,3,4,5,2], [11,11] and [3,2,3,2,3] are dominated (by 2, 11 and 3 respectevitely) but arrays [3], [1,2] and [3,3,2,2,1]are not.
Small remark: since any array can be dominated only by one number, we can not specify this number and just say that array is either dominated or not.
You are given array a1,a2,…,an. Calculate its shortest dominated subarray or say that there are no such subarrays.
The subarray of a is a contiguous part of the array a, i. e. the array ai,ai+1,…,aj for some 1≤i≤j≤n
Input
The first line contains single integer T(1≤T≤1000) — the number of test cases. Each test case consists of two lines.
The first line contains single integer n(1≤n≤2⋅105) — the length of the array a.The second line contains n integers a1,a2,…,an (1≤ai≤n) — the corresponding values of the array a.It’s guaranteed that the total length of all arrays in one test doesn’t exceed 2⋅105
Output
Print T integers — one per test case. For each test case print the only integer — the length of the shortest dominated subarray, or −1 if there are no such subarrays.
Example
Input
4
1
1
6
1 2 3 4 5 1
9
4 1 2 4 5 4 3 2 1
4
3 3 3 3
Output
-1
6
3
2
Note
In the first test case, there are no subarrays of length at least 2, so the answer is −1.In the second test case, the whole array is dominated (by 1) and it’s the only dominated subarray.In the third test case, the subarray a4,a5,a6 is the shortest dominated subarray.
In the fourth test case, all subarrays of length more than one are dominated.

先输入n个数,然后找这n个数中相同数出现的最小间距是多少

#include<iostream>
#include<cstring>
using namespace std;
int aa[234567];
int main()
{
	int n;int m,x;
	cin>>n;
	while(n--)
	{
		cin>>m;
		memset(aa,0,sizeof(aa));
		int minn=99999999;
		for(int i=1;i<=m;i++)
		{
			cin>>x;
			if(aa[x]==0) aa[x]=i;
			else	
			{
				minn=min(minn,i-aa[x]);
				aa[x]=i;
			}
		}
		if(minn!=99999999) cout<<minn+1<<endl;
		else cout<<"-1"<<endl;	
	}
	return 0;
}
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!