codeforces706A之Beru-taxi

来源:互联网 发布:java项目相对路径 编辑:程序博客网 时间:2024/06/05 20:41

Vasiliy lives at point (a, b) of the coordinate plane. He is hurrying up to work so he wants to get out of his house as soon as possible. New app suggested n available Beru-taxi nearby. The i-th taxi is located at point (xi, yi) and moves with a speed vi.

Consider that each of n drivers will move directly to Vasiliy and with a maximum possible speed. Compute the minimum time when Vasiliy will get in any of Beru-taxi cars.

Input

The first line of the input contains two integers a and b ( - 100 ≤ a, b ≤ 100) — coordinates of Vasiliy's home.

The second line contains a single integer n (1 ≤ n ≤ 1000) — the number of available Beru-taxi cars nearby.

The i-th of the following n lines contains three integers xiyi and vi ( - 100 ≤ xi, yi ≤ 1001 ≤ vi ≤ 100) — the coordinates of the i-th car and its speed.

It's allowed that several cars are located at the same point. Also, cars may be located at exactly the same point where Vasiliy lives.

Output

Print a single real value — the minimum time Vasiliy needs to get in any of the Beru-taxi cars. You answer will be considered correct if its absolute or relative error does not exceed 10 - 6.

Namely: let's assume that your answer is a, and the answer of the jury is b. The checker program will consider your answer correct, if .

Examples
input
0 022 0 10 2 2
output
1.00000000000000000000
input
1 333 3 2-2 3 6-2 7 10
output
0.50000000000000000000
Note

In the first sample, first taxi will get to Vasiliy in time 2, and second will do this in time 1, therefore 1 is the answer.

In the second sample, cars 2 and 3 will arrive simultaneously.


题意:给出Vasiliy家的坐标(a,b),Vasiliy急着去上班,他手机软件检测到附近有n辆出租车,坐标(xi,yi),速度vi,问最快到达他家的车所花时间为多少????

sb题!!!!

AC代码如下:

#include <iostream>#include<cstdio>#include<cmath>//#define mini 0xfffffff using namespace std; double x[3000],y[3000],v[3000];double fun(int a,int b,int x,int y,int v){return (double)sqrt((a-x)*(a-x)+(b-y)*(b-y))/v;}int main(int argc, char** argv) {int a,b;int n,i,j;while(cin>>a>>b){cin>>n;double min=999999;for(i=0;i<n;i++) {cin>>x[i]>>y[i]>>v[i];if(fun(a,b,x[i],y[i],v[i])<min){min=fun(a,b,x[i],y[i],v[i]);}}printf("%.20lf\n",min);}return 0;}


0 0