eolymp
bolt
Try our new interface for solving problems
Problems

Goat Ropes

Goat Ropes

Time limit 1 second
Memory limit 64 MiB

A farmer has n goats. Coincidentally, he also has n fixed posts in a field where he wants the goats to graze. He wants to tie each goat to a post with a length of rope. He wants to give each goat as much leeway as possible – but, goat ropes are notorious for getting tangled, so he cannot allow any goat to be able to wander into another goat’s territory. What is the maximum amount of rope he could possibly use?

Input data

There will be multiple test cases in the input. Each test case will begin with an integer n (2n50), indicating the number of posts in the field. On each of the next n lines will be a pair of integers, x and y (0x1000, 0y1000) which indicate the cartesian coordinates (in meters) of that post in the field. No two posts will be in the same position. You may assume that the field is large enough that the goats will never encounter its border. The input will end with a line with a single 0.

Output data

For each test case, output a single floating point number, which indicates the maximum amount of rope that the farmer could possibly use, in meters. Output this value with exactly two decimal places, rounded. Output no spaces, and do not output a blank line between answers.

Source The University of Chicago Invitational Programming Contest 2013, March 29-31, 2013