比赛 |
noip2016普及练习2 |
评测结果 |
WWWWEEEEEW |
题目名称 |
谁是卧底 |
最终得分 |
0 |
用户昵称 |
*柯南* |
运行时间 |
0.610 s |
代码语言 |
C++ |
内存使用 |
4.13 MiB |
提交时间 |
2016-11-07 20:05:46 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstring>
#include <string>
#include <cstdlib>
#include <climits>
#include <algorithm>
using namespace std;
const int maxn=1000000;
int n,m,a[maxn];
bool f;
int main()
{
freopen("leader.in","r",stdin);
freopen("leader.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i=1;i<=m;i++)
{
int x;
scanf("%d",&x);
a[x]++;
}
for(int i=1;i<=maxn;i++)
{
if(a[i]>m/2)
{
f=true;
printf("%d\n",i);
}
}
if(!f)
{
cout<<-1<<endl;
}
return 0;
}