#abc157f. [abc157_f]Yakiniku Optimization Problem
[abc157_f]Yakiniku Optimization Problem
Problem Statement
Takahashi wants to grill pieces of meat on a grilling net, which can be seen as a two-dimensional plane. The coordinates of the -th piece of meat are , and its hardness is .
Takahashi can use one heat source to grill the meat. If he puts the heat source at coordinates , where and are real numbers, the -th piece of meat will be ready to eat in $c_i \\times \\sqrt{\\left(X - x_i\\right)^2 + \\left(Y-y_i\\right)^2}$ seconds.
Takahashi wants to eat pieces of meat. Find the time required to have or more pieces of meat ready if he put the heat source to minimize this time.
Constraints
- All values in input are integers.
- $\\left(x_i, y_i\\right) \\neq \\left(x_j, y_j\\right) \\left(i \\neq j \\right)$
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
It will be considered correct if its absolute or relative error from our answer is at most .
Sample Input 1
4 3
-1 0 3
0 0 3
1 0 2
1 1 40
Sample Output 1
2.4
If we put the heat source at , the -st, -nd, and -rd pieces of meat will be ready to eat within seconds. This is the optimal place to put the heat source.
Sample Input 2
10 5
-879 981 26
890 -406 81
512 859 97
362 -955 25
128 553 17
-885 763 2
449 310 57
-656 -204 11
-270 76 40
184 170 16
Sample Output 2
7411.2252