CF BUDDY
← Problems·

1059D · Nature Reserve

2200 · binary search, geometry, ternary search

Problem: There is a forest that we model as a plane and live nn rare animals. Animal number ii has its lair in the point (xi,yi)(x_{i}, y_{i}). 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 Format: The first line contains one integer nn (1n1051 \le n \le 10^5) — the number of animals.

Each of the next nn lines contains two integers xix_{i}, yiy_{i} (107xi,yi107-10^7 \le x_{i}, y_{i} \le 10^7) — the coordinates of the ii-th animal's lair. It is guaranteed that yi0y_{i} \neq 0. No two lairs coincide.

Output Format: 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 10610^{-6}.

Formally, let your answer be aa, and the jury's answer be bb. Your answer is considered correct if abmax(1,b)106\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-6}.

Note: In the first sample it is optimal to build the reserve with the radius equal to 0.50.5 and the center in (0, 0.5)(0,\ 0.5).

In the second sample it is impossible to build a reserve.

In the third sample it is optimal to build the reserve with the radius equal to 58\frac{5}{8} and the center in (12, 58)(\frac{1}{2},\ \frac{5}{8}).

Sample Cases

Case 1

Input

1
0 1

Output

0.5

Case 2

Input

3
0 1
0 2
0 -3

Output

-1

Case 3

Input

2
0 1
1 1

Output

0.625

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback