A. Doremy‘s Paint 3(规律)

Problem - A - Codeforces

A. Doremy‘s Paint 3(规律)_第1张图片

解析:

        首先最多只能存在两个值,因为间隔必须相同。并且两个值的数量相差小于等于1 

#include
using namespace std;
#define int long long
const int N=2e5+5;
int t,n,a[N];
mapmp;
signed main(){
	scanf("%lld",&t);
	while(t--){
		scanf("%lld",&n);
		mp.clear();
		for(int i=1;i<=n;i++){
			scanf("%lld",&a[i]);
			mp[a[i]]++;
		}
		if(mp.size()<=1) puts("YES");
		else if(mp.size()==2){
			int a=0,b=0;
			for(auto it:mp){
				if(!a) a=it.second;
				else b=it.second;
			}
			if(abs(a-b)<=1) puts("YES");
			else puts("NO");
		}
		else puts("NO");
	}
	return 0;
}

你可能感兴趣的:(codeforces,算法,数据结构,c语言,开发语言)