You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.1 KiB
59 lines
1.1 KiB
package class09;
|
|
|
|
import java.util.HashMap;
|
|
|
|
public class Code05_IsStepSum {
|
|
|
|
public static boolean isStepSum(int stepSum) {
|
|
int L = 0;
|
|
int R = stepSum;
|
|
int M = 0;
|
|
int cur = 0;
|
|
while (L <= R) {
|
|
M = L + ((R - L) >> 1);
|
|
cur = stepSum(M);
|
|
if (cur == stepSum) {
|
|
return true;
|
|
} else if (cur < stepSum) {
|
|
L = M + 1;
|
|
} else {
|
|
R = M - 1;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static int stepSum(int num) {
|
|
int sum = 0;
|
|
while (num != 0) {
|
|
sum += num;
|
|
num /= 10;
|
|
}
|
|
return sum;
|
|
}
|
|
|
|
// for test
|
|
public static HashMap<Integer, Integer> generateStepSumNumberMap(int numMax) {
|
|
HashMap<Integer, Integer> map = new HashMap<>();
|
|
for (int i = 0; i <= numMax; i++) {
|
|
map.put(stepSum(i), i);
|
|
}
|
|
return map;
|
|
}
|
|
|
|
// for test
|
|
public static void main(String[] args) {
|
|
int max = 1000000;
|
|
int maxStepSum = stepSum(max);
|
|
HashMap<Integer, Integer> ans = generateStepSumNumberMap(max);
|
|
System.out.println("测试开始");
|
|
for (int i = 0; i <= maxStepSum; i++) {
|
|
if (isStepSum(i) ^ ans.containsKey(i)) {
|
|
System.out.println("出错了!");
|
|
}
|
|
}
|
|
System.out.println("测试结束");
|
|
}
|
|
|
|
}
|