[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的数字

  1. #include <algorithm>
  2. #include <cstdio>
  3. using namespace std;
  4. const int maxn = 1E6 + 10;
  5. int a[maxn];
  6. int main(){
  7. int n;
  8. while(~scanf("%d",&n)){
  9. for(int i = 1;i <= n ;++i){
  10. scanf("%d",&a[i]);
  11. }
  12. sort(a,a+n);
  13. a[0] = a[1] - 1;
  14. int i,cnt = 0;
  15. for(i = 1;i <= n ;++i){
  16. if(a[i] == a[i - 1]) ++cnt;
  17. else cnt = 1;
  18. if(cnt >= (n + 1)/2) break;
  19. }
  20. printf("%d\n",a[i]);
  21. }
  22. return 0;
  23. }




以上是关于[2016-03-27][HDU][1029][Ignatius and the Princess IV]的主要内容,如果未能解决你的问题,请参考以下文章

hdu1029

hdu1029

[2016-03-27][HDU][1260][Tickets]

HDU 1029 Ignatius and the Princess IV --- 水题

[2016-03-27][HDU][1257][最少拦截系统]

[2016-03-27][HDU][1114][Piggy-Bank]