Runtime Error on UVA judge and Wrong Answer on codechef on the samequestion

67 Views Asked by At

These are the links to the question on codechef and UVa online Judge

My C code is this:

#include <stdio.h>

int main() {

char c;
int n,m;
char d;
int field=1;


    scanf("%d",&n);
    scanf("%c",&d);//reading space
    scanf("%d",&m);


while(1){

    int arr[n][m];
    if(n==0 || m==0)
     break;

    int i,j;

    scanf("%c",&d); //reading a return(\n)


for(i=0;i<n;i++){
    for(j=0;j<m;j++){
        scanf("%c",&c);
        if(c=='*'){
            arr[i][j]=-1;
        }
        else{
            arr[i][j]=0;
        }
    }       

        scanf("%c",&d); //reading a return(\n)  
}




for(i=0;i<n;i++){
    for(j=0;j<m;j++){
        if(arr[i][j]==-1){
            if(0<=i-1 && arr[i-1][j]!=-1){
                arr[i-1][j]++;
            }
            if(0<=j-1 && arr[i][j-1]!=-1){
                arr[i][j-1]++;
            }
            if(i+1<n && arr[i+1][j]!=-1 ){
                arr [i+1][j]++;
            }
            if(j+1<m && arr[i][j+1]!=-1){
                arr [i][j+1]++;
            }

            if(j+1<m && i-1>=0 && arr[i-1][j+1]!=-1){
                arr[i-1][j+1]++;
            }

            if(j+1<m && i+1<n && arr[i+1][j+1]!=-1){
                arr[i+1][j+1]++;
            }

            if(0<=j-1 && 0<=i-1 && arr[i-1][j-1]!=-1){
                arr[i-1][j-1]++;
            }
            if(0<=j-1 && i+1<=n && arr[i+1][j-1]!=-1){
                arr[i+1][j-1]++;
            }
        }   
    }
}

printf("Field #%d:\n",field++);
for(i=0;i<n;i++){
    for(j=0;j<m;j++){
        if(arr[i][j]==-1)
                printf("*");
        else        
        printf("%d",arr[i][j]);
    }
    printf("\n");
}


    scanf("%d",&n);
    scanf("%c",&d);//reading a space
    scanf("%d",&m);

    if(n==0 || m==0) 
    break;


printf("\n");

}




return 0;
}

I get a runtime error on UVA and wrong Answer on codechef. What is the mistake?

1

There are 1 best solutions below

1
On

You have a typo here:

if(0<=j-1 && i+1<=n && arr[i+1][j-1]!=-1){

i+1<=n should be i+1<n just like you did for the other conditions.