bzoj 2456: mode瞎搞
Posted lokiii
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 2456: mode瞎搞相关的知识,希望对你有一定的参考价值。
这题加个#include
#include<cstdio>
int n,la,x,tot;
int main()
{
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%d",&x);
if(x==la)
tot++;
else if(!tot)
la=x,tot=1;
else
tot--;
}
printf("%d",la);
return 0;
}
以上是关于bzoj 2456: mode瞎搞的主要内容,如果未能解决你的问题,请参考以下文章