题目D--Competition - 20181010

题目 

There is a forest that we model as a plane and live nn rare animals. Animal number iihas its lair in the point (xi,yi)(xi,yi). In order to protect them, a decision to build a nature reserve has been made.

The reserve must have a form of a circle containing all lairs. There is also a straight river flowing through the forest. All animals drink from this river, therefore it must have at least one common point with the reserve. On the other hand, ships constantly sail along the river, so the reserve must not have more than one common point with the river.

For convenience, scientists have made a transformation of coordinates so that the river is defined by y=0y=0. Check whether it is possible to build a reserve, and if possible, find the minimum possible radius of such a reserve.

Input

The first line contains one integer nn (1≤n≤1051≤n≤105) — the number of animals.

Each of the next nn lines contains two integers xixi, yiyi (−107≤xi,yi≤107−107≤xi,yi≤107) — the coordinates of the ii-th animal's lair. It is guaranteed that yi≠0yi≠0. No two lairs coincide.

Output

If the reserve cannot be built, print −1−1. Otherwise print the minimum radius. Your answer will be accepted if absolute or relative error does not exceed 10−610−6.

Formally, let your answer be aa, and the jury's answer be bb. Your answer is considered correct if |a−b|max(1,|b|)≤10−6|a−b|max(1,|b|)≤10−6.

Examples

Input

1
0 1

Output

0.5

Input

3
0 1
0 2
0 -3

Output

-1

Input

2
0 1
1 1

Output

0.625

 

题意:求一个半径最小的圆,使该圆能够包含所有的点,且和x轴相切 

思路:求最小,很容易想到二分。我们二分半径,然后由于固定了与X轴相切,我们对于每一个点,就可以算出这个点在圆上的时候的圆心的极限距离。然后我们就可以求得每一个点的圆心的区间范围。然后所有点的区间范围都相交,那么证明这个半径可行,否则不可行。

#include<bits/stdc++.h>
using namespace std;
double x[100010],y[100010];
int N;
bool check(long double k)
{
    long double l=-100000000000000000.0,r=100000000000000000.0,t;
    for(int i=1;i<=N;i++)
    {
        if(y[i]>k*2)
            return 0;
        t=sqrt(k*k-(k-y[i])*(k-(y[i])));//计算圆心最远的位置
        if(l < x[i]-t) l = x[i]-t;
        if(r > x[i]+t) r = x[i]+t;
    }
    return l<r;//所有圆心区间必须有交点
}
int main()
{
 
    scanf("%d",&N);
    for(int i=1;i<=N;i++)scanf("%lf %lf",&x[i],&y[i]);
    for(int i=1;i<=N;i++)
        if(y[i]*y[N]<0)
        {
            puts("-1");
            return 0;
        }
        else y[i]=y[i]>0?y[i]:-y[i];//必须都在一边
 
    long double l=0,r=100000000000000000.0,m;
    for(int i=1;i<=100;i++)//二分半径足够多的次数
    {
        m=(l+r)/2.0;
        if(check(m))
            r=m;
        else
            l=m;
    }
    printf("%.10Lf",m);
    return 0;
}

也可以用三分法,速度更快.

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值