c语言- Runtime Error(ACCESS_VIOLATION) 错误,高手们看下,谢谢了!

问题描述

Runtime Error(ACCESS_VIOLATION) 错误,高手们看下,谢谢了!

题目:

Problems in Computer Science are often classified as belonging to a certain class of problems (e.g., NP, Unsolvable, Recursive). In this problem you will be analyzing a property of an algorithm whose classification is not known for all possible inputs.

Consider the following algorithm:

1.      input n 

2.      print n 

3.      if n = 1 then STOP 

4.           if n is odd then n <- 3n + 1 

5.           else n <- n / 2 

6.      GOTO 2

Given the input 22, the following sequence of numbers will be printed 22 11 34 17 52 26 13 40 20 10 5 16 8 4 2 1

It is conjectured that the algorithm above will terminate (when a 1 is printed) for any integral input value. Despite the simplicity of the algorithm, it is unknown whether this conjecture is true. It has been verified, however, for all integers n such that 0 < n < 1,000,000 (and, in fact, for many more numbers than this.)

Given an input n, it is possible to determine the number of numbers printed (including the 1). For a given n this is called the cycle-length of n. In the example above, the cycle length of 22 is 16.

For any two numbers i and j you are to determine the maximum cycle length over all numbers between i and j.

Input

The input will consist of a series of pairs of integers i and j, one pair of integers per line. All integers will be less than 1,000,000 and greater than 0.

You should process all pairs of integers and for each pair determine the maximum cycle length over all integers between and including i and j.

You can assume that no opperation overflows a 32-bit integer.

Output

For each pair of input integers i and j you should output i, j, and the maximum cycle length for integers between and including i and j. These three numbers should be separated by at least one space with all three numbers on one line and with one line of output for each line of input. The integers i and j must appear in the output in the same order in which they appeared in the input and should be followed by the maximum cycle length (on the same line).

Sample Input

1 10
100 200
201 210
900 1000

Sample Output

1 10 20
100 200 125
201 210 89
900 1000 174

题意:
题的大意是输入两个数(注意,这里没有说第一个数一定要小与第二个数),然后对这两个数之间的所有整数包括端点的数,进行一种规律运算,并求出运算的次数,比较所有的数规律运算次数,输出最大的

总是出现 Runtime Error(ACCESS_VIOLATION) 的错误,高手们看下,谢谢了!

我的代码:
#include
#include
int count=0;
int box[2000000]={0};
void calculate(int num){
if(box[num]!=0) {
count+=box[num];
return ;
}
if(num==1) return ;
count++;
calculate( (num%2) ? 3*num+1 : num/2);
return ;
}

int main(){
// freopen("input.txt","r",stdin);
int integer1=0,integer2=0,i=0,max=0,temp=0;

while(scanf("%d%d",&integer1,&integer2)!=EOF)
{
    if(integer1>integer2){
        temp=integer1;
        integer1=integer2;
        integer2=temp;
    }
    for(i=integer1;i<=integer2;i++){

    calculate(i);
    if(count>max) max=count;

    box[i]=count;
    count=0;
    }
    printf("%d %d %dn",integer1,integer2,max);
    max=0;

}

    calculate(i);
    if(count>max) max=count;

    box[i]=count;
    count=0;
return 0;

}

解决方案

可能数组太大越界了?

解决方案二:

输入 1 1000000,越界了

解决方案三:

访问无效内存空间?不太好看,debug一下。

时间: 2024-10-24 16:52:53

c语言- Runtime Error(ACCESS_VIOLATION) 错误,高手们看下,谢谢了!的相关文章

sql2005数据库恢复问题,高手帮忙看下.谢谢了.没多少分,大家见谅

问题描述 从客户那里备份过来的数据库文件,在我机器上备份报下面的错误.已备份数据库的磁盘上结构版本为611.服务器支持版本539,无法还原或升级此数据库.RESTOREFILELIST操作异常终止.(MicrosoftSQLServer,错误:3169)客户的是sql2005,我的也是sql2005,今天我本机打了2005sp2还是报这个错.高手帮忙看下.谢谢了.急还有更高级的补丁打吗?可以在那里下?谢谢

indows+蓝屏-Windows系统蓝屏,下面是bluescreanView和Windbg分析的结果,求高手帮忙看下~~谢谢

问题描述 Windows系统蓝屏,下面是bluescreanView和Windbg分析的结果,求高手帮忙看下~~谢谢 BlueScream分析结果: ==================================================** Dump File : 121814-18735-01.dmp Crash Time : 2014/12/18 7:19:00 Bug Check String : CRITICAL_OBJECT_TERMINATION Bug Check C

c++-C++Runtime Error (ACCESS_VIOLATION)

问题描述 C++Runtime Error (ACCESS_VIOLATION) 不知道哪里写错了VS2012上能运行处结果 但OJ上有问题 #include #include #include using namespace std; struct Node { string id; int m,a[10],gread; }array[1000]; bool cmp(Node a,Node b) { if(a.gread!=b.gread) return a.gread>b.gread; el

web-mono3.8.0+jexus5.6.3+xsp3.8发布网站出现runtime error的错误

问题描述 mono3.8.0+jexus5.6.3+xsp3.8发布网站出现runtime error的错误 确认web代码没有问题只是简单的显示mono四个字母,在mono2.10里可以正常显示 解决方案 解决方案二: jexus-5.6.3

求教!简单的ACM数塔问题,出现Runtime Error(ACCESS_VIOLATION)

问题描述 求教!简单的ACM数塔问题,出现Runtime Error(ACCESS_VIOLATION) 以下是代码,自己编译运行是对的 #include<stdio.h> int max(int a,int b) { if(a>b) return a; else return b; } int main() { int c,n,i,j; int a[100][100]; int b[100][100]; scanf("%d",&c); while(c--)

runtime error-杭电amc hdu4027 Runtime Error (ACCESS_VIOLATION) 求看!

问题描述 杭电amc hdu4027 Runtime Error (ACCESS_VIOLATION) 求看! #include #include #include #include using namespace std; struct nod{ int l; int r; int flag;int64 data; }; int n,tem,m,a,b,c; __int64 ans[100010]; __int64 sum; struct nod tree[400040]; void main

jvm-tomcat自动挂掉,在tomcat/bin/hs_err_pid4884.log如下,请高手帮忙看下。

问题描述 tomcat自动挂掉,在tomcat/bin/hs_err_pid4884.log如下,请高手帮忙看下. # A fatal error has been detected by the Java Runtime Environment: # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c95a1db, pid=5424, tid=2752 # JRE version: 6.0_45-b06 Java VM: Java HotSpo

c语言写的简单加密程序,看下哪儿错了

问题描述 c语言写的简单加密程序,看下哪儿错了 //实现如下 FILE *fp; char data; if((fp=fopen("D:test.txt","r+"))==NULL) { printf("文件打开失败!"); exit(1); } data=fgetc(fp); while(!feof(fp)) { data=data^0x18;//加密原理,四五位取反 fseek(fp,-1,1);//回退一个字节 fputc(data,fp)

c#利用upnp做端口映射成功了,但始终没法连接,哪位高手帮看下代码?

问题描述 c#利用upnp做端口映射成功了,但始终没法连接,哪位高手帮看下代码?这个是网上的代码,如下:目前有2个问题:1.mappings这个值经常为null,我windows7防火墙已经关闭,路由器upnp也开启了.但有时莫名其妙mappings不为null,于是就把映射信息添加到路由器了.如图2.当添加端口映射成功后,始终无法通信,如图:哪位高手指点一下,谢谢!!!!!!相关代码如下:usingSystem;usingSystem.Collections.Generic;usingSyst