【Codeforces Round #194 (Div. 1)】Codeforces 333E Summer Earnings

Many schoolchildren look for a job for the summer, and one day, when
Gerald was still a schoolboy, he also decided to work in the summer.
But as Gerald was quite an unusual schoolboy, he found quite unusual
work. A certain Company agreed to pay him a certain sum of money if he
draws them three identical circles on a plane. The circles must not
interfere with each other (but they may touch each other). He can
choose the centers of the circles only from the n options granted by
the Company. He is free to choose the radius of the circles himself
(all three radiuses must be equal), but please note that the larger
the radius is, the more he gets paid.

Help Gerald earn as much as possible.

Input The first line contains a single integer n — the number of
centers (3 ≤ n ≤ 3000). The following n lines each contain two
integers xi, yi ( - 104 ≤ xi, yi ≤ 104) — the coordinates of potential
circle centers, provided by the Company.

All given points are distinct.

Output Print a single real number — maximum possible radius of
circles. The answer will be accepted if its relative or absolute error
doesn’t exceed 10 - 6.

从大到小加入边,第一次出现三元环的时候就是最大直径。具体做法用bitset维护和每个点相连的节点。

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<bitset>
#include<cmath>
using namespace std;
struct edge
{
    int u,v;
    double x;
    bool operator < (const edge &ee) const
    {
        return x>ee.x;
    }
}a[9000010];
int n,m,x[30010],y[30010];
bitset<30010> b[30010];
double dis(int u,int v)
{
    return sqrt((x[u]-x[v])*(x[u]-x[v])+(y[u]-y[v])*(y[u]-y[v]));
}
int main()
{
    int i,j,u,v;
    scanf("%d",&n);
    for (i=0;i<n;i++)
      scanf("%d%d",&x[i],&y[i]);
    for (i=0;i<n;i++)
      for (j=i+1;j<n;j++)
        a[++m]=(edge){i,j,dis(i,j)};
    sort(a+1,a+m+1);
    for (i=1;i<=m;i++)
      if ((b[u=a[i].u]&b[v=a[i].v]).any())
      {
        printf("%.8f\n",a[i].x/2);
        return 0;
      }
      else b[u][v]=b[v][u]=1;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值