I'm trying on this problem for days, but always get a wrong answer. Can anyone help?

Here is the problem.

Problem Description Recently, Dave is boring, so he often walks around. He finds that some places are too crowded, for example, the ground. He couldn't help to think of the disasters happening recently. Crowded place is not safe. He knows there are N (1<=N<=1000) people on the ground. Now he wants to know how many people will be in a square with the length of R (1<=R<=1000000000). (Including boundary).

Input The input contains several cases. For each case there are two positive integers N and R, and then N lines follow. Each gives the (x, y) (1<=x, y<=1000000000) coordinates of people.

Output Output the largest number of people in a square with the length of R.

Sample Input:

3 2
1 1
2 2
3 3

Sample Output:

3

Hint If two people stand in one place, they are embracing.

I feel sorry for not offering my code.

Here is the code.

#include<iostream>

using namespace std;

const int maxn=101;

int n,r;

typedef struct node{

    int x,y;
    node(){};
    node(int xx,int yy){x=xx;y=yy;} 
    bool inside(int x1,int x2,int y1,int y2);   
}node;

bool node::inside(int x1,int x2,int y1,int y2){

    if(x1<=x&&x<=x2&&y1<=y&&y<=y2)return 1;
    return 0;  
}    

node p[maxn];

inline int max(int x,int y){

    return x>y?x:y;
}

int main(){

    int i,j,k,test,x,y,a,b,c,d,ans;
    scanf("%d%d",&n,&r);
    for(i=0;i<n;i++)scanf("%d%d",&p[i].x,&p[i].y);

    ans=0;
    for(i=0;i<n;i++)
    {
        a=b=c=d=0;
        for(j=0;j<n;j++)
        {
            if(p[i].inside(p[j].x,p[j].x+r,p[j].y,p[j].y+r))a++;//1
            if(p[i].inside(p[j].x-r,p[j].x,p[j].y-r,p[j].y))b++;//3 
            if(p[i].inside(p[j].x-r,p[j].x,p[j].y,p[j].y+r))c++;//2 
            if(p[i].inside(p[j].x,p[j].x+r,p[j].y-r,p[j].y))d++;//4           
        }            
        ans=max(ans,a);
        ans=max(ans,b);
        ans=max(ans,c);
        ans=max(ans,d);    
    }       
    printf("%d\n",ans);    
    return 0;
}
link|improve this question
3  
What and how you've tried to solve the problem? – In silico Sep 3 '11 at 5:49
Please show us what you have tried, and maybe we can help. I don't know if SO is generally opposed to helping with homework problems, but I would think they would be opposed to helping on HW problems with no attempts at solving. – Jack Sep 3 '11 at 5:53
Flagging this as a homework question. As In silico and Jack have mentioned, some details regarding your existing attempts would be helpful. – JW8 Sep 3 '11 at 5:59
3  
whathaveyoutried? – Forrest Ye Sep 3 '11 at 7:04
feedback

1 Answer

You read only first case. The input can have several cases (n,r, array of people x several). So you need additional loop around code from scanf to outputting of your answer.

Example:

Input:

3 2
1 1
2 2
3 3
4 2
1 1
2 2
3 3
1000 1000

Output:

3
3

You should save output of scanf(n,r) to decide, if there is another case or not.

Also, I can't check is your solution (counting max number of people inside a square) correct or not.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.