#D11046. K is Key of Takakkey

    ID: 9178 Type: Default 8000ms 268MiB

K is Key of Takakkey

K is Key of Takakkey

K is a polygonal Kay

"Do I have to be No. 1? Is it not No. K?"

This is Mr. Kay's inscription. Recently, Mr. Kay seems to be exclusively interested in polygons, seeing N points placed on a vast two-dimensional plane spreading in front of him, and thinking about how to form polygons from them. There is. Apparently, Kay decided to select some of these N points and connect them in any order to form a polygon with the selected points as vertices. However, polygons must meet the following conditions.

  • It is a simple polygon. That is, it has three or more vertices, and any two non-contiguous sides do not have an intersection.
  • Includes all N points, including non-selected points, inside or on the circumference.

According to his belief, Mr. Kay is hungry for a polygon whose perimeter, that is, the sum of the lengths of all sides, is the Kth shortest among such polygons.

Your job is to help Mr. Kay by writing a program that finds the Kth polygon among the polygons that satisfy the conditions and arranges them in ascending order of perimeter, and outputs the perimeter. However, there may be no more than K such polygons. In such a case, it is necessary to output -1 with apologetic feelings while considering Mr. Kay's remorse.

Input

The input consists of multiple datasets. Each dataset is represented in the following format.

N K x1 y1 ... xN yN

The first row of the dataset is given the number N of points on the two-dimensional plane and the rank K of the perimeter to be found. Both N and K are integers, and 3 ≤ N ≤ 25, 1 ≤ K ≤ 10 holds. The following N lines give the coordinates of each point on the two-dimensional plane. On the i-th line of the N-line, the x-coordinate xi and the y-coordinate yi of the i-th point are both given as integers, and -100 ≤ xi, yi ≤ 100 holds for all 1 ≤ i ≤ N. No matter which of the three different points you choose, you can assume that there is no straight line that passes through all three points. In addition, it can be assumed that the polygon that satisfies the condition described in the problem statement, which is the Kth polygon when arranged in ascending order of perimeter, is uniquely determined if it exists.

The end of the input is represented by a line consisting of only two zeros. The total number of all datasets does not exceed 50.

Output

When creating a simple polygon by selecting some points from a given set of points, output the perimeter of the K-th shortest perimeter of the configurable simple polygons on one line. If such a polygon does not exist, output -1. The result should not contain more than 10-4 errors.

Sample Input

5 2 1 1 14 twenty two 3 1 3 5 3 1 0 2 Ten -Ten 3 2 0 2 Ten -Ten 9 10 8 1 9 19 2 10 1 1 4 17 7 13 3 4 6 13 9 21 0 0

Output for the Sample Input

11.812559200041266 6.472135954999580 -1 52.202878812480016

Example

Input

5 2 1 1 1 4 2 2 3 1 3 5 3 1 0 2 1 0 -1 0 3 2 0 2 1 0 -1 0 9 10 8 1 9 19 2 10 1 1 4 17 7 13 3 4 6 13 9 21 0 0

Output

11.812559200041266 6.472135954999580 -1 52.202878812480016

inputFormat

outputFormat

outputs the perimeter. However, there may be no more than K such polygons. In such a case, it is necessary to output -1 with apologetic feelings while considering Mr. Kay's remorse.

Input

The input consists of multiple datasets. Each dataset is represented in the following format.

N K x1 y1 ... xN yN

The first row of the dataset is given the number N of points on the two-dimensional plane and the rank K of the perimeter to be found. Both N and K are integers, and 3 ≤ N ≤ 25, 1 ≤ K ≤ 10 holds. The following N lines give the coordinates of each point on the two-dimensional plane. On the i-th line of the N-line, the x-coordinate xi and the y-coordinate yi of the i-th point are both given as integers, and -100 ≤ xi, yi ≤ 100 holds for all 1 ≤ i ≤ N. No matter which of the three different points you choose, you can assume that there is no straight line that passes through all three points. In addition, it can be assumed that the polygon that satisfies the condition described in the problem statement, which is the Kth polygon when arranged in ascending order of perimeter, is uniquely determined if it exists.

The end of the input is represented by a line consisting of only two zeros. The total number of all datasets does not exceed 50.

Output

When creating a simple polygon by selecting some points from a given set of points, output the perimeter of the K-th shortest perimeter of the configurable simple polygons on one line. If such a polygon does not exist, output -1. The result should not contain more than 10-4 errors.

Sample Input

5 2 1 1 14 twenty two 3 1 3 5 3 1 0 2 Ten -Ten 3 2 0 2 Ten -Ten 9 10 8 1 9 19 2 10 1 1 4 17 7 13 3 4 6 13 9 21 0 0

Output for the Sample Input

11.812559200041266 6.472135954999580 -1 52.202878812480016

Example

Input

5 2 1 1 1 4 2 2 3 1 3 5 3 1 0 2 1 0 -1 0 3 2 0 2 1 0 -1 0 9 10 8 1 9 19 2 10 1 1 4 17 7 13 3 4 6 13 9 21 0 0

Output

11.812559200041266 6.472135954999580 -1 52.202878812480016

样例

5 2
1 1
1 4
2 2
3 1
3 5
3 1
0 2
1 0
-1 0
3 2
0 2
1 0
-1 0
9 10
8 1
9 19
2 10
1 1
4 17
7 13
3 4
6 13
9 21
0 0
11.812559200041266

6.472135954999580 -1 52.202878812480016

</p>