#include #include #include using namespace std; const int MAXN = 1e5; mt19937 rnd(22); struct Point { int x, y; Point(){} Point(int x, int y) : x(x), y(y) {} }; int n, k; double speeds[MAXN+5]; Point computers[MAXN+5]; int main() { #ifndef _LOCAL_ ifstream cin("runners.in"); ofstream cout("runners.out"); #endif // __LOCAL__ cin >> n >> k; for(int i = 0;i> speeds[i]; for(int i = 0;i> computers[i].x >> computers[i].y; for(int i = 0;i