bzoj2456: mode

Posted BBChq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj2456: mode相关的知识,希望对你有一定的参考价值。

用抵消的思想好神啊这个。

#include<cstdio>
int n,ans,cnt,u;
int main(){
    scanf("%d",&n);
    while(n--){
        scanf("%d",&u);
        if(!cnt) ans=u,cnt=1;
        else if(u==ans) cnt++;
        else cnt--;
    }
    printf("%d\n",ans);
    return 0;
}

  

2456: mode

Time Limit: 1 Sec  Memory Limit: 1 MB
Submit: 3594  Solved: 1510
[Submit][Status][Discuss]

Description

给你一个n个数的数列,其中某个数出现了超过n div 2次即众数,请你找出那个数。

Input

第1行一个正整数n。
第2行n个正整数用空格隔开。

Output

    一行一个正整数表示那个众数。

Sample Input

5
3 2 3 1 3

Sample Output

3

HINT

 

100%的数据,n<=500000,数列中每个数<=maxlongint。


 


zju2132 The Most Frequent Number

 

Source

[Submit][Status][Discuss]

以上是关于bzoj2456: mode的主要内容,如果未能解决你的问题,请参考以下文章

[bzoj 2456]mode

bzoj 2456: mode

[BZOJ2456] mode

Bzoj 2456: mode 数论,众数

bzoj2456: mode

bzoj2456 mode