POJ 1328 Radar Installation
#include
#include
#include
using namespace std;
int n,d,ans;
struct point
{
int x,y;
}p[1010];
bool operator < (const point &a,const point &b)
{
return a.x<b.x;
}
bool operator == (const point
原创
2013-05-18 19:41:16 ·
751 阅读 ·
0 评论