gpt4 book ai didi

c - 如何取存储在数组中的大值的模数?

转载 作者:太空狗 更新时间:2023-10-29 15:05:38 26 4
gpt4 key购买 nike

假设我有一个包含数字的整数数组,我想对存储在其中的值取模,即

 int a[36]={1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9} 

并将其转换为类似 987654321987654321987654321987654321 的数字。

在 C 语言中,long long int 只允许 10^18。我想取 10^9+7 的模数。我怎样才能做到这一点?

程序:

int main()
{
int a[36]={1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9};
long long int temp=0;
int i;
for(i=0;i<36;i++)
{
temp=temp+a[i]*pow(10,i);
}
temp=temp%1000000007;
printf("%lld",temp);
return 0;
}

最佳答案

由于 36 位十进制数字对于典型的 long long 来说太多了,您需要在转换期间执行模数运算:

int a[36]={1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9,1,2,3,4,5,6,7,8,9};
long long int temp=0;
for(int i=35 ; i >= 0 ; i--) {
temp = 10*temp + a[i];
temp %= 1000000007;
}
printf("%lld",temp);

我对您的代码做了两处更改:

  • 修复了将数字数组转换为数字的方式 - 您的代码使用了 pow,并将较高索引处的数字视为较高阶数字。一旦您超过了可以表示为 double 的十的最高次方,这就会产生精度问题。
  • %= 移入循环 - 您的代码不会让数字溢出,方法是将值保持在 0 到 1000000006 之间(含)。

运行此代码 produces与使用支持任意整数精度的库(我使用 Java BigInteger here)获得的值相同。

关于c - 如何取存储在数组中的大值的模数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30512657/

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