A. Beru-taxi

    xiaoxiao2026-01-11  6

    time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output

    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 0 2 2 0 1 0 2 2 output 1.00000000000000000000 input 1 3 3 3 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.

    解题说明:此题是一道数学题,计算两点之间距离然后求时间即可。

    #include<cstdio> #include <cstring> #include<cmath> #include<iostream> #include<algorithm> #include<vector> #include <map> using namespace std; int main() { int a,b, i, j , t, x, y, s; double tm, time=999999.0; scanf("%d %d", &a, &b); scanf("%d", &t); for(i=0; i<t; i++) { scanf("%d %d %d", &x, &y, &s); tm = sqrt(pow(a-x, 2)+pow(b-y, 2))/(s*1.0); if(tm<time) { time=tm; } } printf("%0.20lf\n", time); }

    转载请注明原文地址: https://ju.6miu.com/read-1305879.html
    最新回复(0)