码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode:Factorial Trailing Zeroes

时间:2015-03-30 16:18:19      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:

Given an integer n, return the number of trailing zeroes in n!.

最初的代码

class Solution {
public:
    int trailingZeroes(int n) {
       long long int fac = 1;
        int count=0;
        if (n==0) fac = 1;

        for(int i = n;i>0;i--)
        {
            fac *= i ;
        }
        while(fac % 10 == 0)
        {
            count ++;
            fac = fac/10;
        }
        return count;
    }
};

报错:

Submission Result: Time Limit Exceeded

 

看了网上的才知道是质数分解,主要是提取5的个数:

class Solution {
public:
    int trailingZeroes(int n) {
        int ret = 0;
        for(int i = 1 ;i<=n;i++)
        {
            int tem = i;
            while(tem % 5 == 0)
            {
                ret ++;
                tem /= 5;
            }
        }
        return ret;
    }
};

但是 提交后突然 OMG!!!

Last executed input:1808548329

再次在网上寻找原因继续想,进一步简化:

首先1~n中既有5的倍数,还有25的倍数,还是125的倍数等等,而25可以提供两个0,125可以提供3个0,(PS:我自己没有证明过,求大神给出证明,欢迎联系QQ:543451622)

class Solution {
public:
    int trailingZeroes(int n) {
        int ret = 0;
        while(n)
        {
            ret += n/5;
            n /= 5;
        }
        return ret;

    }
};

Submission Result: Accepted

leetcode:Factorial Trailing Zeroes

标签:

原文地址:http://www.cnblogs.com/chdxiaoming/p/4378091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!