HDU1099---数学 | 思维

Posted kimsimple

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU1099---数学 | 思维相关的知识,希望对你有一定的参考价值。

 

hdu 1099 Lottery
题意:1~n编号的彩票,要买全,等概率条件下平均要买几张。
已经买了m张时,买中剩下的概率为1-m/n,则要买的张数为1/(1-m/n)
n=2,s=1+1/(1-1/2);n=3,s=1+1/(1-1/3)+1/(1-2/3)
s=1+1/(1-1/n)+1/(1-2/n)+1/(1-3/n)+……+1/(1-(n-1)/n)=n/n+n/(n-1)+n/(n-2)+……+n/1=sum(n/i),i=1~n
b/a+d/c=(bc+ad)/(ac)
然后递推着通分,化简;输出。

 

///实现 sum(n/i) (i=1~n)
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<cmath>
#include<string>
#include<algorithm>
using namespace std;
#define LL long long
LL gcd(LL a,LL b)
{
    return b==0?a:gcd(b,a%b);
}
struct fen{
    LL a,b;

};
fen& add(struct fen&a,struct fen&b)
{
    a.a=a.a*b.b+a.b*b.a;
    a.b=a.b*b.b;
    LL t=gcd(a.a,a.b);
    a.a/=t;
    a.b/=t;
    return a;
}
int ditNum(LL a)
{
    int cnt=0;
    while(a)
    {
        cnt++;
        a/=10;
    }
    return cnt;
}
int main()
{
    int n;
    LL fenz=0,fenm=0;
    struct fen f,f1;
    while(~scanf("%d",&n))
    {
        f.a=n;f.b=1;
        for(int i=2;i<=n;i++)
        {
            f1.a=n;f1.b=i;
            f=add(f,f1);
        }
        if(f.a%f.b==0)
        {
            cout<<f.a/f.b<<endl;
        }
        else
        {
            LL t=f.a/f.b;
            int a=ditNum(t),b=ditNum(f.b);
            a++;
            int x=a;
            while(a--)
                cout<<" ";
            cout<<f.a-t*f.b<<endl;
            cout<<t<<" ";
            while(b--)
                cout<<"-";
            cout<<endl;
            while(x--)
                cout<<" ";
            cout<<f.b<<endl;
        }
    }
}

 

以上是关于HDU1099---数学 | 思维的主要内容,如果未能解决你的问题,请参考以下文章

HDU 1099 [Lottery] 数学期望

HDU6038-Function-数学+思维-2017多校Team01

hdu 4779 Tower Defense (思维+组合数学)

2016女生赛 HDU 5710 Digit-Sum(数学,思维题)

2017多校第一套&&hdu6038 思维 数学

HDU 6216 A Cubic number and A Cubic Number数学思维+枚举/二分