问题3310--maximum shortest distance

3310: maximum shortest distance

[命题人 : ]
时间限制 : 1.000 sec  内存限制 : 64 MB

题目描述

There are n points in the plane. Your task is to pick k points (k>=2), and make the closest points in these k points as far as possible.

输入

For each case, the first line contains two integers n and k. The following n lines represent n points. Each contains two integers x and y. 2<=n<=50, 2<=k<=n, 0<=x,y<10000.

输出

For each case, output a line contains a real number with precision up to two decimal places.

样例输入 Copy

3 2
0 0
10 0
0 20

样例输出 Copy

22.36