比赛 |
noip2016普及练习2 |
评测结果 |
|
题目名称 |
谁是卧底 |
最终得分 |
0 |
用户昵称 |
lingyixiaoyao |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2016-11-07 20:34:03 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <climits>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <algorithm>
#include <set>
#include <deque>
#include <queue>
#include <string>
#include <map>
#include <stack>
#include <sstream>
#include <vector>
#include <ctime>
#include <bitset>
using namespace std;
int n,m;
bool b;
map<int,int> a;
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; cin>>x;
a[x]++;
}
int p=m/2;
for(map<int,int>::iterator it=a.begin();it!=a.end();it++)
{
// int q=*it;
if(it->second>p)
{
b=true;
printf("%d",*it);
break;
}
}
if(b==false)
{
cout<<"-1"<<endl;
}
return 0;
}