记录编号 597191 评测结果 AAAAAAAAAA
题目名称 又是决斗 最终得分 100
用户昵称 Gravatarwdsjl 是否通过 通过
代码语言 C++ 运行时间 1.500 s
提交时间 2024-11-25 17:15:01 内存使用 7.45 MiB
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;

const int N = 6e6+10;

int n,a[N],b[N];

priority_queue <int> q;

int main(){
	freopen("duela.in","r",stdin);
	freopen("duela.out","w",stdout);
	scanf("%d",&n);
	for(int i=1;i<=n;i++)scanf("%d",&a[i]);
	int tot=0;
	sort(a+1,a+1+n);
	for(int i=1;i<=n;i++){
		if(a[i]!=a[i-1]){
			tot++;
		}
		b[tot]++;
	} 
	for(int i=1;i<=tot;i++)q.push(b[i]);
		while(q.size()>1)
	{
		int x=q.top();
		q.pop();
		int y=q.top();
		q.pop();
		if(abs(x-y)) q.push(abs(x-y));
	}
	if(q.size()==1) printf("%d",q.top());
	else printf("0");
	return 0;
}