题目链接:http://codeforces.com/problemset/problem/50/D
#include<bits/stdc++.h>
using namespace std;
#define debug puts("YES");
#define rep(x,y,z) for(int (x)=(y);(x)<(z);(x)++)
#define ll unsigned long long
#define lrt int l,int r,int rt
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
#define root l,r,rt
#define mst(a,b) memset((a),(b),sizeof(a))
const int maxn =1e2+5;
const int mod=9999991;
const int ub=1e6;
const double e=2.7182818284590452353602874713527 ;
const double eps=0.000000001;
ll powmod(ll x,ll y){ll t; for(t=1;y;y>>=1,x=x*x%mod) if(y&1) t=t*x%mod; return t;}
ll gcd(ll x,ll y){return y?gcd(y,x%y):x;}
/*
题目大意:给定若干点的位置,和一个爆炸中心点,
问如果要想使得其爆炸失败的概率满足不大于给定值/1000,
(爆炸失败指 的是小于k 个点爆炸),最小的半径应该是多少。