给你一个n个数的数列,其中某个数出现了超过n div 2次即众数,请你找出那个数。
标签:++ sam asc ems 众数 end accept mit data
给你一个n个数的数列,其中某个数出现了超过n div 2次即众数,请你找出那个数。
第1行一个正整数n。
第2行n个正整数用空格隔开。
一行一个正整数表示那个众数。
100%的数据,n<=500000,数列中每个数<=maxlongint。
1 /************************************************************** 2 Problem: 2456 3 User: 1090900715 4 Language: Pascal 5 Result: Accepted 6 Time:628 ms 7 Memory:220 kb 8 ****************************************************************/ 9 10 program j01; 11 var n,t,tot,x:longint; 12 begin 13 readln(n); 14 t:=0;tot:=0; 15 while n>0 do 16 begin 17 dec(n); 18 read(x); 19 if tot=0 then 20 begin 21 tot:=1; 22 t:=x; 23 end; 24 if x=t then inc(tot) else dec(tot); 25 end; 26 writeln(t); 27 end. 28
标签:++ sam asc ems 众数 end accept mit data
原文地址:http://www.cnblogs.com/oldjang/p/6159056.html