bzoj 2456 //2456: mode //在线测评地址https://www.lydsy.com/JudgeOnline/problem.php?id=2456
更多题解,详见https://blog.csdn.net/mrcrack/article/details/90228694BZOJ刷题记录
//2456: mode
//在线测评地址https://www.lydsy.com/JudgeOnline/problem.php?id=2456
//快排+统计
//样例通过,提交Time_Limit_Exceed.2019-7-25 17:03
//怎么可能.测算了快排5*10^5log(5*10^5)=5*10^5(log500+log1000)=5*10^5*(8+10)=9*10^6
//快排是有可能超时.
//https://blog.csdn.net/xym_CSDN/article/details/50932858此文思路代码都写得不错,思路摘抄如下
//写在前面:曾经在codevs某次月赛中出现过,被Godder秒了……
//思路:1MB的内存,n<=500000注定这个题不能开数组(甚至不能开万能库(╯‵□′)╯︵┻━┻),但是可以用一个比较特别的思路,就是
//把第一次读入的数记为众数,并记录tot,即出现次数,如果读入的数和它不同就tot–,相同就tot++,当tot=0时就对重新对众数重新
//赋值,可以理解为不同的数相抵消,众数由于出现次数大于n/2的性质使得留到最后的数一定是众数
//样例通过,提交AC.2019-7-25 18:22
#include
#define LL long long
int main(){
int n,i,tot=0;
LL x,ans;
scanf("%d",&n);
while(n--){
scanf("%lld",&x);
if(!tot)ans=x;
if(ans==x)tot++;
else tot--;
}
printf("%lld\n",ans);
return 0;
}