bzoj2456 mode (思路)

不能把数存下来。

于是来打擂台,如果新数和他不相等,cnt--,否则cnt++。如果cnt<=0了,那个新数就来把它顶掉,然后把cnt重置成1

最后在台上的就是那个次数大于N/2的众数

(连<bits/stdc++.h>都不能include..直接MLE)

 1 #include<cstdio>
 2 using namespace std;
 3 
 4 int main(){
 5     int N;scanf("%d",&N);
 6     int lst=-1,cnt=1;
 7     for(int i=1;i<=N;i++){
 8         int x;
 9         scanf("%d",&x);
10         if(x==lst) cnt++;
11         else{
12             cnt--;
13             if(!cnt) lst=x,cnt=1;
14         }
15     }printf("%d\n",lst);
16     
17     return 0;
18 }

 

posted @ 2018-10-09 10:24  Ressed  阅读(167)  评论(0编辑  收藏  举报