CF590B.Chip 'n Dale Rescue Rangers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The first line of the input contains four integers x1x_{1} , y1y_{1} , x2x_{2} , y2y_{2} ( x1,y1,x2,y2<=10000|x_{1}|,|y_{1}|,|x_{2}|,|y_{2}|<=10000 ) — the coordinates of the rescuers' headquarters and the point, where signal of the distress came from, respectively.

The second line contains two integers and tt ( 0<v,t<=1000 ), which are denoting the maximum speed of the chipmunk dirigible relative to the air and the moment of time when the wind changes according to the weather forecast, respectively.

Next follow one per line two pairs of integer (vx,vy)(v_{x},v_{y}) and (wx,wy)(w_{x},w_{y}) , describing the wind for the first tt seconds and the wind that will blow at all the remaining time, respectively. It is guaranteed that and .

输入格式

Print a single real value — the minimum time the rescuers need to get to point (x2,y2)(x_{2},y_{2}) . You answer will be considered correct if its absolute or relative error does not exceed 10610^{-6} .

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

输出格式

输入输出样例

  • 输入#1

    0 0 5 5
    3 2
    -1 -1
    -1 0
    

    输出#1

    3.729935587093555327
    
  • 输入#2

    0 0 0 1000
    100 1000
    -50 0
    50 0
    

    输出#2

    11.547005383792516398
    
首页