f(x)是x!末尾是 0 的数量。回想一下x! = 1 * 2 * 3 * ... * x,且 0! = 1。
例如,f(3) = 0,因为 3! = 6 的末尾没有 0 ;而 f(11) = 2,因为 11!= 39916800 末端有 2 个 0 。
给定k,找出返回能满足 f(x) = k的非负整数 x的数量。
示例 1:
输入:k = 0
输出:5
解释:0!, 1!, 2!, 3!, 和 4!均符合 k = 0 的条件。
第一种思路,这个解法会超时,理解起来比较简单:
private int count5(int i) {
int count = 1;
while (i % 5 == 0) {
i /= 5;
count++;
}
return count;
}
有了上述思路后代码实现如下:
-
- class Solution1 {
- public int preimageSizeFZF(int k) {
- int count5 = 0;
-
- int i = 0;
- while (count5 < k) {
- i++;
- count5 += count5(i);
- }
-
- if (count5 == k) {
- return 5;
- } else {
- return 0;
- }
- }
-
- private int count5(int i) {
-
- int count = 1;
- while (i % 5 == 0) {
- i /= 5;
- count++;
- }
- return count;
- }
- }
第二种思路,这种思路其实是求解出现N这个数字的第一次所在位置,这里会使用到二分查找;由于考虑的是第一次N的位置,那么如果这个N不存在则会找到第一个大于N的位置;同理N+1的位置也可以这么找到;用f(N) 表示第一个大于等于N的数字,f(N+1)表示第一个大于等于N+1的数字,最终: 如果N存在那么 f(N+1)-f(N) =5 , 如果N不存在那么 f(N+1)-f(N) =0;
private int count5(int num) {
int count = 0;
while (num >= 5) {
num /= 5;
count += num;
}
return count;
}
public int getValue(int k) {
int left = 0;
int right = k * 5;
while (left <= right) {
int mid = (right - left) / 2 + left;
int count = count5(mid);
if (count < k) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return left;
}
public int preimageSizeFZF(int k) {
return (getValue(k + 1)) - (getValue(k));
}
整体代码如下:
-
- class Solution {
-
- public int preimageSizeFZF(int k) {
- return (getValue(k + 1)) - (getValue(k));
- }
-
- public int getValue(int k) {
-
- int left = 0;
- int right = k * 5;
-
- while (left <= right) {
-
- int mid = (right - left) / 2 + left;
-
- int count = count5(mid);
- if (count < k) {
- left = mid + 1;
- } else {
- right = mid - 1;
- }
-
- }
- return left;
- }
-
- private int count5(int num) {
- int count = 0;
- while (num >= 5) {
- num /= 5;
- count += num;
- }
- return count;
- }
-
- public static void main(String[] args) {
- Solution solution = new Solution();
- //1000000000
- System.out.println(solution.preimageSizeFZF(1000000000));
- System.out.println(solution.preimageSizeFZF(5));
- }
- }
结果耗时比对,两次效果:

如果只是单纯解决这道题,解决思路会非常多,但是耗时差别会非常大;第二种思路我是看其他人的解法才解出来的,第二种思路的核心就是通过二分查找找到第一个满足条件的数字或者是大于条件的数字,然后用f(n+1)-f(n) 就能求出满足条件的个数。