比赛 |
noip2016普及练习2 |
评测结果 |
AAAAAAAAAA |
题目名称 |
谁是卧底 |
最终得分 |
100 |
用户昵称 |
liuliuliu |
运行时间 |
0.044 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2016-11-07 19:39:27 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <climits>
#include <cstdlib>
#include <ctime>
#include <sstream>
#include <queue>
#include <set>
#include <map>
using namespace std;
int n,m;
map <int,int> a;
int ans;
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]++;
}
m/=2;
map<int,int>::iterator it;
ans=-1;
for(it=a.begin();it!=a.end();it++)
{
int tt=(*it).second;
//printf("%d\n",tt);
if(tt>m)
{
ans=(*it).first;
break;
}
}
printf("%d",ans);
return 0;
}