SPOJ Bitmap got runtime error (SIGBUS)

SPOJ Bitmap link

There is given a rectangular bitmap of size n*m. Each pixel of the bitmap is either white or black, but at least one is white. The pixel in i-th line and j-th column is called the pixel (i,j). The distance between two pixels p1=(i1,j1) and p2=(i2,j2) is defined as:

d(p1,p2)=|i1-i2|+|j1-j2|.

Task

Write a program which:

reads the description of the bitmap from the standard input, for each pixel, computes the distance to the nearest white pixel, writes the results to the standard output. Input

The number of test cases t is in the first line of input, then t test cases follow separated by an empty line. In the first line of each test case there is a pair of integer numbers n, m separated by a single space, 1<=n <=182, 1<=m<=182. In each of the following n lines of the test case exactly one zero-one word of length m, the description of one line of the bitmap, is written. On the j-th position in the line (i+1), 1 <= i <= n, 1 <= j <= m, is '1' if, and only if the pixel (i,j) is white.

Output

In the i-th line for each test case, 1<=i<=n, there should be written m integers f(i,1),...,f(i,m) separated by single spaces, where f(i,j) is the distance from the pixel (i,j) to the nearest white pixel.

Can anyone help me to find out my mistake??

my code:

#include <cstdio>
#include <stdlib.h>
int main(){
    int t,x,y;
    scanf("%d",&t);
    for(int a=0;a<t;a++){
        scanf("%d %d",&x,&y);
        char row[250];
        int r[250][250],xx[250],yy[250],num=0;
        for(int d=0;d<250;d++){
            for(int e=0;e<250;e++)r[d][e]=-1;
        }
        for(int b=0;b<x;b++){
            scanf("%s",&row);
            for(int c=0;c<y;c++){
                if((int)row[c]==49){
                    r[b][c]=0;
                    xx[num]=b;
                    yy[num]=c;
                    num++;
                }
            }
        }
        for(int f=0;f<x;f++){
            for(int g=0;g<y;g++){
                int ans=0,f_d=250;
                if(r[f][g]!=0){
                    for(int h=0;h<num;h++){
                        if(abs(f-xx[h])+abs(g-yy[h])<f_d)f_d=abs(f-xx[h])+abs(g-yy[h]);
                    }
                    ans=f_d;
                }
                printf("%d ",ans);
            }
            printf("\n");
        }
    }
}
link|improve this question
Try running your code in a debugger; that will tell you what line caused the crash. – Oli Charlesworth Dec 11 '11 at 15:35
I got everything correct with the Sample input: 1 3 4 0001 0011 0110 – Anson Ho Dec 11 '11 at 15:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.