比赛 |
20161223 |
评测结果 |
AAAAAAAAAA |
题目名称 |
哞投 |
最终得分 |
100 |
用户昵称 |
Ostmbh |
运行时间 |
0.280 s |
代码语言 |
C++ |
内存使用 |
0.33 MiB |
提交时间 |
2016-12-23 19:41:47 |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <queue>
#include <cstring>
#include <algorithm>
using namespace std;
queue<int>q;
int vis[1010];
struct T{
int x,y;
}A[1010];
int n;
bool dis(int i,int j,long long x){
return (A[i].x-A[j].x)*(A[i].x-A[j].x)+(A[i].y-A[j].y)*(A[i].y-A[j].y)<=x;
}
bool judge(int x){
memset(vis,0,sizeof(vis));
q.push(1);
vis[1]=1;
int cnt=1;
while(!q.empty()){
int cd=q.front();
q.pop();
for(int j=1;j<=n;j++){
if(j==cd)
continue;
if(dis(j,cd,x)&&!vis[j]){
q.push(j);
vis[j]=1;
cnt++;
}
}
}
return cnt==n;
}
int main(){
freopen("moocast.in","r",stdin);
freopen("moocast.out","w",stdout);
scanf("%d",&n);
int xmax=0,ymax=0;
for(int i=1;i<=n;i++){
scanf("%d %d",&A[i].x,&A[i].y);
xmax=max(xmax,A[i].x);
ymax=max(ymax,A[i].y);
}
int r=xmax*xmax+ymax*ymax,l=0;
while(l+1<r){
int mid=(l+r)>>1;
if(judge(mid))
r=mid;
else l=mid;
}
if(judge(l))
printf("%d\n",l);
else printf("%d\n",r);
return 0;
}