gpt4 book ai didi

java - 查找数字 (4+sqrt(11))^n 的小数点前的最后两位数字

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:25:03 25 4
gpt4 key购买 nike

我正在做一道题,我必须找到数字
[4 + sqrt(11)]n .

例如,当 n = 4, [4 + sqrt(11)]4 = 2865.78190... 时,答案是 65。其中 n 可以从 2 变化<= n <= 109

我的解决方案 - 我尝试构建一个平方根函数来计算 11 的平方根精度等于用户输入的n值。

我用过BigDecimal在 Java 中避免溢出问题。

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

最佳答案

在 n=22 时,结果似乎从 n=2 的位置开始重复。因此,将这 20 个值按照与列表中相同的顺序保存在数组中,例如nums[20]

然后当用户提供一个 n 时:

return nums[(n-2)%20]

现在有这种模式重复的证明 here .

或者,如果你坚持计算长度;因为您是通过循环乘法(而不是 BigDecimal pow(n))来计算幂的,所以您可以将前面使用的数字修剪到最后 2 位数字和小数部分。

关于java - 查找数字 (4+sqrt(11))^n 的小数点前的最后两位数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21964541/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com