【BZOJ2456】mode(主元素问题)

problem

  • 给你一个n个数的数列
  • 找出其中出现超过n/2次的数

solution

1、既然众数出现了超过了n/2次,那么任意删除序列中的两个不同的数,众数在新序列中出现的次数也一定会超过n/2次。

2、所以我们就维护一个计数。碰到自己就累加,反之去掉,为0时就用当前读入更新数的值。(注意初始值,此时未读入第一个数,多以一定会减去1,所以cnt先赋成1。

3、!!!看内存,1MB,数组?不止是数组。。。using namespace std加了都会MLE。。。

codes

#include<cstdio>
int main(){
    int n;  scanf("%d", &n);
    int ans=-1, cnt = 1;
    while(n--){
        int x;  scanf("%d", &x);
        if(x == ans)cnt++;
        else cnt--;
        if(cnt == 0){
            ans = x;
            cnt = 1;
        }
    }
    printf("%d\n", ans);
    return 0;
}
posted @ 2018-05-28 13:07  gwj1139177410  阅读(100)  评论(0编辑  收藏  举报
选择