I am trying to develop code for SPOJ factorial problem number 11. The following is my code

import java.math.*; 
import java.io.*;
public class Problem11 {

/**
 * Count the number of zeroes at the end of 
 * the factorial value of a number.
 */
public static void main(String[] args) throws IOException
{
 BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
 int numOfInputs=0;
 numOfInputs=Integer.parseInt(br.readLine());
 BigInteger nextNum[]=new BigInteger[numOfInputs];
 BigInteger factValue[]=new BigInteger[numOfInputs];

 //Get all the numbers to be computed
 for(int count=0;count<numOfInputs;count++)
 {
    nextNum[count]=new BigInteger(br.readLine());
 }

 //Obtain the factorial value for each number
 for(int count=0;count<numOfInputs;count++)
 {
     factValue[count]=getFact(nextNum[count]);
 }

 //Obtain the number of trailing zeroes
 for(int count=0;count<numOfInputs;count++)
 {
     //System.out.println(factValue[count]);
     System.out.println(getZeroes(factValue[count]));

 }
}


public static String getZeroes(BigInteger num) 
 {
    int numOfZeroes=0;
    while(num.remainder(BigInteger.TEN).equals(BigInteger.ZERO))
    {
        num=num.divide(BigInteger.TEN);
        numOfZeroes++;
    }
    return String.valueOf(numOfZeroes);
 }



public static BigInteger getFact(BigInteger num) 
{
    BigInteger factorial=BigInteger.ONE;    
    if(num.equals(0))
    {
      return (BigInteger.valueOf(1));
    }
    else
    {
        int count=1;
        while((BigInteger.valueOf(count).compareTo(num))<=0)        
        {               
            factorial=factorial.multiply(BigInteger.valueOf(count));
            count++;
        }
    }

    return factorial;

}

}

The code works fine for numbers up to 5 digits with small delay and for the last number 8735373 it is taking too much time, if I submit my solution, the judge shows compilation error.. I am unable to figure out whats the error. Please have a look at my code and help me to trace the problem.

link|improve this question

50% accept rate
feedback

4 Answers

up vote 1 down vote accepted

You might look at this method for finding the number of trailing zeros in n!.

import java.util.*;

public class Main {

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int count = in.nextInt();
        for (int i = 0; i < count; i++) {
            int n = in.nextInt();
            int result = 0;
            for (int d = 5; d <= n; d *= 5) {
                result += n / d;
            }
            System.out.println(result);
        }
    }
}
link|improve this answer
,Thanks a lot friend. Really helped me a lot... – varunit Sep 1 '11 at 5:03
It's not the fastest one there, but it's a start. – trashgod Sep 1 '11 at 12:12
feedback

Your approach (naive: counting the real factorial value and then counting the zeros manually) would NEVER pass no matter how. Take a look at the extreme case (i.e. upper limit of the factorial, I don't even think the given memory limit is enough to compute it). Look at the problem from different way, think what the real problem is, that's the art of problem solving ;)

Hint: what can produce and add more 0s to the end of a number, specifically by multiplication?

link|improve this answer
Thanks for the immediate help, can you confirm me whether my approach to obtain the factorial value is fine, so that I would think a while for obtaining the number of zeroes in the value? – varunit Jul 25 '11 at 6:38
You don't need to obtain the value of the factorial :) – Jesus Ramos Jul 25 '11 at 6:42
As Jesus said, no. You don't need it, you just need to get the factors that causes 0. Another hint: the solution's complexity is O(1) :) – LeleDumbo Jul 25 '11 at 22:45
feedback

The reason for your error is it should be public class Main

Also your code will get TLE, you must observe that brute force will never work on SPOJ. The way to solve this is to see an interesting pattern with powers of 5 and the number of zeroes at the end.

link|improve this answer
Oh! I am getting confused and too much excited, which portion of my code to change. Thank you very much for the reply. Could you please help me more to solve these kind of problems? – varunit Jul 25 '11 at 6:48
Brute Force = bad. Let me give you a little bit of a hint. Multiplying by what numbers adds 1 zero? So then n! contains as many zeroes (at the end) as there are factors of these numbers in n. – Jesus Ramos Jul 25 '11 at 6:51
Now i am getting a run time error NZEC. I have changed the class name to Main. As for your approach I would get a zero if I multiply a number by 10. For example if 100! the value is 9332621544394415268169923885626670049071596826438162146859296389521759999322991‌​5608941463976156518286253697920827223758251185210916864000000000000000000000000 and there are 24 zeroes. Please explain me the approach – varunit Jul 25 '11 at 7:12
10 is not the only number, what if it ends in 2 and I multiply by 5? Also NZEC means your program crashed or threw up an exception. – Jesus Ramos Jul 25 '11 at 7:15
feedback

Here is a solution in C. We don't need to compute the exact factorial for this problem.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#define MAX 1000000
int xpn(int x, int n){
int prod=1;
while(n){
prod*=x;
n--;
}
return prod;
}
int trail(int x){
int numZero=0;
int i=1;
int k;
for(;x/xpn(5,i);i++){
numZero+=(x/xpn(5,i));
}
return numZero;
}
int main(int argc, char **argv){
#if 1
int n;
int num[MAX];
int zero[MAX];
scanf("%d",&n);
int count=n;
int i=0;
while(count){
scanf("%d",&num[i]);
zero[i]=trail(num[i]);
printf("%d\n",zero[i]);
i++;
count--;
}
#endif
return 0;
}
link|improve this answer
I see you have been using BigInteger class of java. You don't need to compute factorial for this problem. It's an inefficient solution. Check out the tutorial en.wikipedia.org/wiki/Trailing_zeros#Factorial and my implementation in C for reference. I hope you will be able to code it in Java then. – user302520 Nov 3 '11 at 4:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.