Codeforces 590B Chip 'n Dale Rescue Rangers(二分)



Codeforces 590B Chip 'n Dale Rescue Rangers

Chip 'n Dale Rescue Rangers

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

A team of furry rescue rangers was sitting idle in their hollow tree when suddenly they received a signal of distress. In a few moments they were ready, and the dirigible of the rescue chipmunks hit the road.

We assume that the action takes place on a Cartesian plane. The headquarters of the rescuers is located at point(x1, y1), and the distress signal came from the point(x2, y2).

Due to Gadget's engineering talent, the rescuers' dirigible can instantly change its current velocity and direction of movement at any moment and as many times as needed. The only limitation is: the speed of the aircraft relative to the air can not exceed meters per second.

Of course, Gadget is a true rescuer and wants to reach the destination as soon as possible. The matter is complicated by the fact that the wind is blowing in the air and it affects the movement of the dirigible. According to the weather forecast, the wind will be defined by the vector (vx, vy) for the nearestt seconds, and then will change to (wx, wy). These vectors give both the direction and velocity of the wind. Formally, if a dirigible is located at the point(x, y), while its own velocity relative to the air is equal to zero and the wind(ux, uy) is blowing, then after seconds the new position of the dirigible will be.

Gadget is busy piloting the aircraft, so she asked Chip to calculate how long will it take them to reach the destination if they fly optimally. He coped with the task easily, but Dale is convinced that Chip has given the random value, aiming only not to lose the face in front of Gadget. Dale has asked you to find the right answer.

It is guaranteed that the speed of the wind at any moment of time is strictly less than the maximum possible speed of the airship relative to the air.

Input

The first line of the input contains four integers x1,y1, x2, y2 (|x1|,  |y1|,  |x2|,  |y2| ≤ 10 000) — the coordinates of the rescuers' headquarters and the point, where signal of the distress came from, respectively.

The second line contains two integers andt (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) and(wx, wy), describing the wind for the firstt seconds and the wind that will blow at all the remaining time, respectively. It is guaranteed that and.

Output

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

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

Examples
Input
0 0 5 5
3 2
-1 -1
-1 0
Output
3.729935587093555327
Input
0 0 0 1000
100 1000
-50 0
50 0
Output
11.547005383792516398



题意:

一架飞机,最大速度为v,要从基地飞往目的地,在飞行途中前t秒受到(vx,vy)风速影响,t秒过后风速变为(wx,wy),求到达目的地所需的最少时间。

分析:

受风速的影响,相当于在飞机静止时,将起点基地的位置往风刮的方向移动。设飞行时间为T,若在t秒内,则基地的位置相当于(x1+vx*T,x2+vy*T),若大于t秒,基地位置为(x1+vx*t+wx*(T-t),x2+vy*t+wy*(T-t)),二分时间判相等。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
int main(){
	double x1,y1,x2,y2,v,t,vx,vy,wx,wy,mid,l,r,x,y;
	scanf("%lf%lf%lf%lf%lf%lf%lf%lf%lf%lf",&x1,&y1,&x2,&y2,&v,&t,&vx,&vy,&wx,&wy);
	l=0;r=10000000000;
	while(r-l>1e-10){
		mid=(r+l)/2;
		if(mid>t){
			x=x1+vx*t+wx*(mid-t);
			y=y1+vy*t+wy*(mid-t);
		}
		else{
			x=x1+vx*mid;
			y=y1+vy*mid;
		}
		if((x2-x)*(x2-x)+(y2-y)*(y2-y)>(v*mid)*(v*mid))l=mid;
		else r=mid;
	}
	printf("%.10lf\n",mid);
	return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值