Hide

Problem I
Easter Eggs

/problems/eastereggs/file/statement/en/img-0001.jpg
Picture by wackystuff via Flickr.

Easter is coming and the Easter Bunny decided to organise a chocolate egg hunt for the children. He will hide two types of eggs: blue milk chocolate and red dark chocolate. In the field there are some redberry and some blueberry plants where the Easter Bunny could hide the eggs. Red eggs should be hidden in a redberry plant and blue eggs in a blueberry plant.

The local government has issued a permit for the event, under the condition that exactly $N$ eggs are hidden. As they do not pay for the dental care plans of the local children, the Easter Bunny gets to decide himself how many eggs to hide of each colour.

According to the yearly tradition, there is a big reward for the first child to find both a red and a blue egg. In order to make the hunt as challenging as possible, the Easter Bunny wants to maximise the minimum distance between a red and a blue egg. To keep things fair, he will hide at most one egg in each plant. Your task is to write a program to help him accomplish his goal.

Input

The input consists of the following:

  • one line containing three integers $N, B, R$, the number of eggs to hide $N \leq 250$, the number of blueberry plants $B < N$ and the number of redberry plants $R < N$;

  • $B$ lines, each containing two integers $-10^4 \leq x,y \leq 10^4$, indicating the coordinates $(x,y)$ of a blueberry plant;

  • $R$ lines, each containing two integers $-10^4 \leq x,y \leq 10^4$, indicating the coordinates $(x,y)$ of a redberry plant.

The $B+R$ plants are guaranteed to have distinct coordinates. Moreover, $N$ is guaranteed to satisfy $N \leq B+R$.

Output

Output a single line containing a floating point number, $D$, the largest minimum distance between a red and a blue egg that can be achieved. You are required to output $D$ with absolute precision $10^{-6}$, i.e. with at least $6$ decimal places.

\includegraphics[width=.3\textwidth ]{./sample-testcase2.pdf}
Figure 1: Illustration of the second example input. The eggs are hidden in the four filled bushes.
Sample Input 1 Sample Output 1
3 2 2
0 0
1 0
2 0
3 0
2.000000000000000
Sample Input 2 Sample Output 2
4 3 3
0 0
1 2
-1 2
0 1
-1 -1
1 -1
3.000000000000000

Please log in to submit a solution to this problem

Log in