给你一个n个数的数列,其中某个数出现了超过n div 2次即众数,请你找出那个数。
给你一个n个数的数列,其中某个数出现了超过n div 2次即众数,请你找出那个数。
第1行一个正整数n。
第2行n个正整数用空格隔开。
一行一个正整数表示那个众数。
100%的数据,n<=500000,数列中每个数<=maxlongint。
zju2132 The Most Frequent Number
1 var i,t,x,tot,n:longint; 2 begin 3 assign(input,‘input.txt‘);assign(output,‘output.txt‘); 4 reset(input);rewrite(output); 5 readln(n);read(x);t:=x;tot:=1; 6 for i:=2 to n do 7 begin 8 read(x); 9 if x=t then inc(tot) 10 else if tot=0 then begin t:=x;tot:=1;end 11 else dec(tot); 12 end; 13 writeln(t); 14 close(input);close(output); 15 end.
原文:http://www.cnblogs.com/zyfzyf/p/3916780.html