Osu!
Problem descriptionosu! Is a very popular music game. Basically, it is a game about clicking. Some points will appear on the screen at some time, and you have to click them at a correct time.
Now, you want to write an algorithm to estimate how diffecult a game is.
To simplify the things, in a game consisting of n points, point I will occur at time TI at Place (XI, Yi), And You shoshould click it exactly at TI at (XI, yi ). that means you shoshould move your cursor from point I to point I + 1. this movement is called a jump, and the difficulty of a jump is just the distance between point I and point I + 1 divided by the time between Ti AND Ti + 1. and the difficulty of a game is simply the difficulty of the most difficult jump in the game.
Now, given a description of a game, Please calculate its difficulty.
Inputthe first line contains an integer T (T ≤ 10), denoting the number of the test cases.
For each test case, the first line contains an integer N (2 ≤ n ≤1000) denoting the number of the points in the game. then n lines follow, the I-th line consisting of 3 space-separated integers, Ti (0 ≤ Ti <Ti + 1 ≤ 106), XI, and Yi (0 ≤ XI, yi ≤106) as mentioned above.
Outputfor each test case, output the answer in one line.
Your answer will be considered correct if and only if its absolute or relative error is less than 1e-9.
Sample Input
252 1 93 7 25 9 06 6 37 6 01011 35 6723 2 2929 58 2230 67 6936 56 9362 42 1167 73 2968 19 2172 37 8482 24 98
Sample output
9.219544457354.5893762558HintIn memory of the best osu! player ever Cookiezi.
Source2014 Asia Anshan Regional Contest
Solution:
Water question, understanding the meaning of the question, writing code is OK.
Code:
#include <iostream>#include <stdio.h>#include <algorithm>#include <string.h>#include <cmath>#include <iomanip>#include <vector>#include <map>#include <stack>#include <queue>using namespace std;int n;struct Point{ int x,y,t;}point[1002];double dis(Point a,Point b){ return sqrt((double)(a.x-b.x)*(a.x-b.x)+(double)(a.y-b.y)*(a.y-b.y));}int main(){ int t;cin>>t; while(t--) { cin>>n; cin>>point[1].t>>point[1].x>>point[1].y; double ans=-1; for(int i=2;i<=n;i++) { cin>>point[i].t>>point[i].x>>point[i].y; double temp=dis(point[i],point[i-1])/(point[i].t-point[i-1].t); if(ans<temp) ans=temp; } cout<<setiosflags(ios::fixed)<<setprecision(9)<<ans<<endl; } return 0;}
[ACM] HDU 5078 Osu!