Pagini recente » Borderou de evaluare (job #2893128) | Clasamentul arhivei de probleme | Cod sursa (job #2659961)
// C++ program tofind smallest number whose
// factorial contains at least n trailing
// zeroes.
#include <fstream>
using namespace std;
// Return true if number's factorial contains
// at least n trailing zero else false.
bool check(int p, int n)
{
int temp = p, count = 0, f = 5;
while (f <= temp)
{
count += temp/f;
f = f*5;
}
return (count >= n);
}
// Return smallest number whose factorial
// contains at least n trailing zeroes
int findNum(int n)
{
// If n equal to 1, return 5.
// since 5! = 120.
if (n==1)
return 5;
// Initalising low and high for binary
// search.
int low = 0;
int high = 5*n;
// Binary Search.
while (low <high)
{
int mid = (low + high) >> 1;
// Checking if mid's factorial contains
// n trailing zeroes.
if (check(mid, n))
high = mid;
else
low = mid+1;
}
return low;
}
// driver code
int main() {
ifstream in("fact.in");
ofstream out("fact.out");
int n;
in >> n;
out << findNum(n);
return 0;
}