Solution in c++
#include <bits/stdc++.h>
using namespace std;
double bst=1000000.0,sol;
int me_x,me_y,n;
int velo (int x,int y,int spd){
sol=1.0*sqrt( pow(me_x-x,2) + pow(me_y-y,2) )/spd;
bst=min(bst,sol);
}
int main()
{
int a,b,c;
cin>>me_x>>me_y;
cin>>n;
while(n--)
{
cin>>a>>b>>c;
velo(a,b,c);
}
cout<<fixed<<setprecision(20)<<bst;
return 0;
}
0 التعليقات:
إرسال تعليق