USACO--3.1Factorials

我开始用了一种比较笨的做法,直接用高精度将阶乘给算出来了,然后直接求出最后非零位。

其实开始的时候我的猜想是每次我们只需要用上次结果的最后非零位乘上这次的最后的非零位,应该就可以得到答案呢。但是这样的猜想是不对的,因为如果最后一位是5的话就会打破这个规律,如果我们就可以将每个数中的2,5因子都去掉,就可以用上面的猜想了。但是又要注意到2的因子数比5的多,所以我们在最后还得将多除了的2乘回去。

因为这个题的n比较小,所以我们也可以每次都只保留结果非零的最后5位,然后最后直接得到答案。


代码如下:



/*
ID:15674811
LANG:C++
PROG:fact4
*/

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;

#define maxn 11000

int main()
{
    //freopen("fact4.in","r",stdin);
    //freopen("fact4.out","w",stdout);
    int n,a[maxn];
    while(scanf("%d",&n)!=EOF)
    {
         a[1]=1;
         int cnt=1,flag;
         for(int i=2;i<=n;i++)
         {
             flag=0;
             for(int j=1;j<=cnt;j++)
             {
                 a[j]=a[j]*i+flag;
                 if(a[j]>9)
                 {
                     flag=a[j]/10;
                     a[j]%=10;
                 }
                 else
                    flag=0;
             }
             while(flag)
             {
                 a[++cnt]=flag%10;
                 flag/=10;
             }
         }
         int i;
         for(i=1;i<=cnt;i++)
            if(a[i]!=0)
                break;
         printf("%d\n",a[i]);
    }
  return 0;
}


/*
ID:15674811
LANG:C++
PROG:fact4
*/

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;

#define maxn 11000

int main()
{
    freopen("fact4.in","r",stdin);
    freopen("fact4.out","w",stdout);
    int n,a[maxn];
    while(scanf("%d",&n)!=EOF)
    {
        int sum=1,mod;
        for(int i=1;i<=n;i++)
        {
            int j=i;
            while(j%2==0)
            {
                n1++;
                j/=2;
            }
            while(j%5==0)
            {
                n2++;
                j/=5;
            }
            sum=(sum*j)%10;
        }
        for(int i=1;i<=n1-n2;i++)
            sum=sum*2%10;
        printf("%d\n",sum);
    }
  return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值