比赛 |
noip2016普及练习2 |
评测结果 |
TTTTTTTTTT |
题目名称 |
谁是卧底 |
最终得分 |
0 |
用户昵称 |
JVendetta |
运行时间 |
10.029 s |
代码语言 |
C++ |
内存使用 |
0.39 MiB |
提交时间 |
2016-11-07 21:10:41 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define ll long long
using namespace std;
ll a[10010];
int main(){
freopen("leader.in","r",stdin);
freopen("leader.out","w",stdout);
ll n,m,i,tot=1,ans=0,ansj;
scanf("%d%d",&n,&m);
for(i=1;i<=m;i++) scanf("%d",&a[i]);
sort(a+1,a+1+m);
for(i=2;i<=m;i++){
if(a[i]!=a[i-1]){
if(ans<tot){
ans=tot;
tot=1;
ansj=a[i-1];
}
}
else tot++;
}
if(ans<tot){
ans=tot;
tot=1;
ansj=a[m];
}
printf("%lld\n",ans>m/2?ansj:-1);
return 0;
}