记录编号 | 444798 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | 谁是卧底 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2017-09-04 11:39:32 | 内存使用 | 0.00 MiB | ||
#prag\ ma GCC optimize("O3") #include<cstdio> #include<cctype> #include<map> #define loop(i,j,k) for(int i=j;i<=k;i++) using namespace std; inline void in(int &x){ x=0;int f=1;char c=getchar(); while(!isdigit(c)){if(c=='-')f=-1;c=getchar();} while (isdigit(c))x=(x<<3)+(x<<1)+(c^48),c=getchar(); x*=f; } inline void out(int x){ if(!x){putchar('0');return;} if(x<0)x=~x+1,putchar('-'); char c[30]={0}; while(x)c[++c[0]]=x%10+48,x/=10; while(c[0])putchar(c[c[0]--]); } int n,m,a; map<int,int> ma; inline int poi(){ freopen("leader.in","r",stdin); freopen("leader.out","w",stdout); in(n);in(m);n=m>>1; loop(i,1,m){ in(a); ma[a]++; if(ma[a]>n){ out(a);return 0; } } out(-1);return 0; } int yuudachi=poi(); int main(){;}