【发布时间】:2014-02-23 05:20:13
【问题描述】:
我正在做一个问题,我必须找到数字小数点前的最后两位数字
[4 + sqrt(11)]n.
例如,当 n = 4, [4 + sqrt(11)]4 = 2865.78190... 时,答案是 65。其中 n 可以从 2 变化9.
我的解决方案 - 我尝试构建一个平方根函数来计算 11 的 sqrt 其精度等于用户输入的 n 值。
我在 Java 中使用了BigDecimal 来避免溢出问题。
public class MathGenius {
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
long a = 0;
try {
a = reader.nextInt();
} catch (Exception e) {
System.out.println("Please enter a integer value");
System.exit(0);
}
// Setting precision for square root 0f 11. str contain string like 0.00001
StringBuffer str = new StringBuffer("0.");
for (long i = 1; i <= a; i++)
str.append('0');
str.append('1');
// Calculating square root of 11 having precision equal to number enter
// by the user.
BigDecimal num = new BigDecimal("11"), precision = new BigDecimal(
str.toString()), guess = num.divide(new BigDecimal("2")), change = num
.divide(new BigDecimal("4"));
BigDecimal TWO = new BigDecimal("2.0");
BigDecimal MinusOne = new BigDecimal("-1"), temp = guess
.multiply(guess);
while ((((temp).subtract(num)).compareTo(precision) > 0)
|| num.subtract(temp).compareTo(precision) > 0) {
guess = guess.add(((temp).compareTo(num) > 0) ? change
.multiply(MinusOne) : change);
change = change.divide(TWO);
temp = guess.multiply(guess);
}
// Calculating the (4+sqrt(11))^n
BigDecimal deci = BigDecimal.ONE;
BigDecimal num1 = guess.add(new BigDecimal("4.0"));
for (int i = 1; i <= a; i++)
deci = deci.multiply(num1);
// Calculating two digits before the decimal point
StringBuffer str1 = new StringBuffer(deci.toPlainString());
int index = 0;
while (str1.charAt(index) != '.')
index++;
// Printing output
System.out.print(str1.charAt(index - 2));
System.out.println(str1.charAt(index - 1));
}
}
此解决方案在 n = 200 时有效,但随后开始变慢。它在 n = 1000 时停止工作。
什么是处理问题的好方法?
2 -- 53
3 -- 91
4 65
5 67
6 13
7 71
8 05
9 87
10 73
11 51
12 45
13 07
14 33
15 31
16 85
17 27
18 93
19 11
20 25
21 47
22 53
23 91
24 65
25 67
【问题讨论】:
-
我会在前 200 个中寻找一个模式......然后也许做一个归纳证明来说明确实有一个模式;然后使用它而不是计算它。
-
@d'alar'cop - 你能解释一下哪种模式???
-
另外,那里有一个非常明显的模式......从n = 22开始它又从n = 2开始......检查这是否一致。然后只需将这些数字保存在一个数组中......然后将结果基于提供的 n 并使用适当的 %ing。
-
有一个模式在 n=22 @d'alar'cop 重复
标签: java performance precision bigdecimal