hdoj 1018 Big Number(斯特林公式)

【题目大意】:给出一个n,叫你求n!的位数。


解题思路:1)快速求n!的位数方法:digits=lg(n!)+1=lg(n)+lg(n-1)+.......+lg(1)+1;
                   在我的意料之外的是,居然化成这样后,一个for扫过去它就过了
                   
                   但在记忆里貌似有一道公式可以直接求n!阶层...最后在师兄的提醒下找到啦!!!!!
               2)利用Stirling公式化简为:
                    lg(n!)=lg(sqrt(2*pi*n))+n*lg(n/e)
                    

【代码】:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
#include <cmath>
#include <string>
#include <cctype>
#include <map>
#include <iomanip>
                   
using namespace std;
                   
#define eps 1e-8
#define pi acos(-1.0)
#define inf 1<<30
#define pb push_back
#define lc(x) (x << 1)
#define rc(x) (x << 1 | 1)
#define lowbit(x) (x & (-x))
#define ll long long

const double e=2.7182818284;
int t,n;

int main()
{   scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        printf("%d\n",(int)(log10(sqrt(2*pi*n))+n*log10(n/e))+1);
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值