gpt4 book ai didi

c++ - 如何解决非常大的数组输入的 SIGSEGV 错误?

转载 作者:行者123 更新时间:2023-11-28 04:26:03 26 4
gpt4 key购买 nike

所以,我正在解决 HackerEarth 中的一个问题,该问题将您的代码测试到非常大的测试用例。因此,当我尝试提交代码时,它通过了前 6 个测试用例,对于其他 5 个,它给出了“超过时间限制”,对于所有其他测试用例,它给出了 SIGSEGV 信号。

代码如下:

#include<bits/stdc++.h>
#include<cmath>
using namespace std;

int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
long long unsigned int tc,b, a , d,c;
cin>>tc;
for(int i=0;i<tc;++i)
{
cin>>a;
cin>>d;
cin>>c;
cin>>b;
long long unsigned int arr[b+1];
arr[0]=a;
arr[1]=d;
arr[2]=c;



if(b>=3){

for(long long unsigned i=3;i<=b;++i)
{
// arr[i]%=1000000007;
(arr[i])=(arr[i-1]+3*arr[i-3]+2*i)%1000000007;
arr[i]%=1000000007;
}
printf("%llu \n",arr[b]%1000000007);



}
else{
printf("%llu \n",arr[b]%1000000007);
}
}
return 0;
}

请帮忙。谢谢。

最佳答案

您正在尝试访问您无法访问的内存。这就是 SIGSEGV 的原因。您需要静态而不是动态地声明数组大小。

但是,最好使用 vector,因为您使用的是 C++。

关于c++ - 如何解决非常大的数组输入的 SIGSEGV 错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54286961/

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