lightoj1045

斯特林公式

n!2πn(ne)n

求n!的位数
利用斯特林(Stirling)公式的进行求解。下面是推导得到的公式:
  res=(long)( (log10(sqrt(2.0*πn)) + n(log10(n)-log10(exp(1.0)))) + 1 );
  当n=1的时候,上面的公式不适用,所以要单独处理n=1的情况!
  这种方法速度很快就可以得到结果。

代码如下:
#include <bits/stdc++.h>

using namespace std;

#define PI 2*acos(0)

int main ()
{
    int t, cnt = 1;
    scanf("%d", &t);
    while(t--)
    {
        int n, k;
        scanf("%d %d", &n, &k);
        printf("Case %d: ", cnt++);
        if(!n || n == 1)
        {
            puts("1");
            continue;
        }
        int ans = ((log10(sqrt(2*PI*n))/log10(k)) + n*((log10(n)/log10(k))-(log10(exp(1.0))/log10(k))) + 1);//斯特林公式
        printf("%d\n", ans);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值