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

HDU1029 Ignatius and the Princess IV

时间:2016-08-08 22:51:14      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

问题链接:HDU1029 Ignatius and the Princess IV。基础练习题,用C++语言编写。

题意简述:输入n(n是奇数),然后输入n个整数,求出现(n+1)/2次的整数。

问题分析:n是奇数,(n+1)/2是n的一半以上,只要将n个数据排序,出现(n+1)/2次的整数必然会出现在中间位置。

本问题使用C++语言编写的原因是函数sort()的参数简单,使用方便。

AC的C++语言程序如下:

/* HDU1029 Ignatius and the Princess IV */

#include <iostream>
#include <algorithm>

using namespace std;

const int MAXN = 999999;
int data[MAXN];

int main()
{
    int n;

    while(cin >> n) {
        for(int i=0; i<n; i++)
            cin >> data[i];

        sort(data, data + n);

        printf("%d\n", data[(n + 1) / 2]);
    }

    return 0;
}


HDU1029 Ignatius and the Princess IV

标签:

原文地址:http://blog.csdn.net/tigerisland45/article/details/52146154

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