[2016-03-27][HDU][1029][Ignatius and the Princess IV]
Posted 红洋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[2016-03-27][HDU][1029][Ignatius and the Princess IV]相关的知识,希望对你有一定的参考价值。
时间:2016-03-30 22:03:01 星期三
题目编号:[2016-03-27][HDU][1029][Ignatius and the Princess IV]
题目大意:给定n个数字,输出其中出现次数超过n/2的数字
#include <algorithm>
#include <cstdio>
using namespace std;
const int maxn = 1E6 + 10;
int a[maxn];
int main(){
int n;
while(~scanf("%d",&n)){
for(int i = 1;i <= n ;++i){
scanf("%d",&a[i]);
}
sort(a,a+n);
a[0] = a[1] - 1;
int i,cnt = 0;
for(i = 1;i <= n ;++i){
if(a[i] == a[i - 1]) ++cnt;
else cnt = 1;
if(cnt >= (n + 1)/2) break;
}
printf("%d\n",a[i]);
}
return 0;
}
以上是关于[2016-03-27][HDU][1029][Ignatius and the Princess IV]的主要内容,如果未能解决你的问题,请参考以下文章
[2016-03-27][HDU][1260][Tickets]
HDU 1029 Ignatius and the Princess IV --- 水题