首页 > 代码库 > HDU-1029-Ignatius and the Princess IV
HDU-1029-Ignatius and the Princess IV
题目链接
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。