码迷,mamicode.com
首页 > 其他好文 > 详细

HDU-1029-Ignatius and the Princess IV

时间:2014-08-24 20:41:02      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:http   io   for   ar   代码   amp   size   ef   c   

题目链接

http://acm.hdu.edu.cn/showproblem.php?pid=1029

这题就是一个大水题但应注意读懂题目意思

这里不解释了

我的AC代码

#include<stdio.h>
#include<string.h>
int hash[1000000];
int main(void)
{
int n,i,a;
while(scanf("%d",&n)==1)
{
int m;
memset(hash,0,sizeof(hash));
for(i=0;i<n;i++)
{
scanf("%d",&a);
hash[a]++;
if(hash[a]>=(n+1)/2)
{
m=a;
}
}
printf("%d\n",m);
}
return 0;
}

HDU-1029-Ignatius and the Princess IV

标签:http   io   for   ar   代码   amp   size   ef   c   

原文地址:http://www.cnblogs.com/liudehao/p/3933309.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!