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;
}