HDU 1029 Ignatius and the Princess IV

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1029

题        意:找出一组n个数中出现次数大于等于(n+1)/2的数。

思        路:

                 一:map计算的方法。

代码如下:

#include <iostream>
using namespace std;
#include <string.h>
#include <stdio.h>
#include <climits>
#include <algorithm>
#define maxn 200005
typedef __int64 LL;
int vis[1000000];
int main()
{
    int n;
    while( scanf ( "%d", &n ) != EOF )
    {
        int f = 0;
        memset( vis, 0, sizeof(vis) );
        for( int i = 0; i < n; i ++ )
        {
            int x;
            scanf ( "%d", &x );
            vis[x]++;
            if( vis[x] >= (n+1)/2 )
                f=x;
        }
        printf("%d\n",f);
    }
    return 0;
}
               二:(非原创)n是个奇数,要求一个数至少出现(n+1)/2次。用time来记录解出现的次数,出现了正确解就令time自增1,不是正确解就使time自减1。

     那么,正确解对应的time一定是不小于1的。可以用一个极端的例子来说明下:输入3 3 3 3 3 3 2 1 5 6 8,开始当ans=3时,time=6,那么继续执行num!=3了,

     time开始自减,但最终time=1,始终不会进入程序if(time==0){}内部执行了。利用最终的time,还可以计算出解出现的次数。公式为:(n-time)/2+time。

代码如下:

#include <iostream>
using namespace std;
#include <string.h>
#include <stdio.h>
#include <climits>
#include <algorithm>
#define maxn 200005
typedef __int64 LL;
int main()
{
    int n;
    while( scanf ( "%d", &n ) != EOF )
    {
        int f, time = 0;
        for( int i = 0; i < n; i ++ )
        {
            int x;
            scanf ( "%d", &x );
            if( time == 0 )
            {
                f = x;
                time++;
            }
            else {
                if( x == f ) time++;
                else time--;
            }
        }
        printf("%d\n",f);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值