标签:
5 1 3 2 3 3 11 1 1 1 1 1 5 5 5 5 5 5 7 1 1 1 1 1 1 1
3 5 1
1 #include<stdio.h> 2 #include<string.h> 3 int hash[1000000]; 4 int main() 5 { 6 int t; 7 while(~scanf("%d",&t)) 8 { 9 int i,temp; 10 memset(hash,0,sizeof(hash)); 11 for(i=0;i<t;i++) 12 { 13 int a; 14 scanf("%d",&a); 15 hash[a]++; 16 if(hash[a]>=(t+1)/2) 17 temp=a; 18 } 19 printf("%d\n",temp); 20 } 21 return 0; 22 }
杭电1029--Ignatius and the Princess IV(哈希)
标签:
原文地址:http://www.cnblogs.com/fengshun/p/4575953.html