BZOJ-2456: mode (神题)

Posted 可惜没如果=_=

tags:

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

2456: mode

Time Limit: 1 Sec  Memory Limit: 1 MB
Submit: 5768  Solved: 2361
[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

鸣谢 黄祎程

神题 hzwer Orz

把每个数和一个与它不同的数相抵消,由于要求的数出现了超过n/2次,那么最后剩下的就是答案

 1 #include "stdio.h"
 2 using namespace std;
 3 int i,n,a,x=0,y=0;
 4 int main(){
 5     freopen ("mode.in","r",stdin);freopen ("mode.out","w",stdout);
 6     scanf("%d",&n);
 7     for (i=1;i<=n;i++){
 8         scanf("%d",&a);
 9         if (y!=a){
10             if (x==0) {x=1,y=a;}
11             else x--;
12         }
13         else x++;
14     }
15     printf("%d",y);
16     return 0;
17 }

 

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

bzoj 2456 mode

[bzoj 2456]mode

bzoj 2456: mode

[BZOJ2456] mode

Bzoj 2456: mode 数论,众数

bzoj2456: mode