codeforces 590B B. Chip 'n Dale Rescue Rangers(二分+计算几何)

阅读: 评论:0

codeforces 590B B. Chip 'n Dale Rescue Rangers(二分+计算几何)

codeforces 590B B. Chip 'n Dale Rescue Rangers(二分+计算几何)

题目链接:

B. 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 nearest t 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  and t (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 first t 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 exceed 10 - 6.

Namely: let's assume that your answer is a, and the answer of the jury is b. 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

题意:

求点(x2,y2)到点(x1,y1)的最短时间,其中t时间内的风向是(vx,vy),其余时间是(wx,wy),对风的速度不超过v;


思路:

可以分开考虑,风改变的只是出发点的位置,然后以时间乘最大的速度为半径,可以得到这样的一个可达圆,看终点在不在圆内,二分最短时间就好;
解决的关键问题就是速度的大小和方向不定,看一点是否可达;

AC代码:

//#include <bits/stdc++.h>
#include <vector>
#include <iostream>
#include <queue>
#include <cmath>
#include <map>
#include <cstring>
#include <algorithm>
#include <cstdio>using namespace std;
#define Riep(n) for(int i=1;i<=n;i++)
#define Riop(n) for(int i=0;i<n;i++)
#define Rjep(n) for(int j=1;j<=n;j++)
#define Rjop(n) for(int j=0;j<n;j++)
#define mst(ss,b) memset(ss,b,sizeof(ss));
typedef long long LL;
template<class T> void read(T&num) {char CH; bool F=false;for(CH=getchar();CH<'0'||CH>'9';F= CH=='-',CH=getchar());for(num=0;CH>='0'&&CH<='9';num=num*10+CH-'0',CH=getchar());F && (num=-num);
}
int stk[70], tp;
template<class T> inline void print(T p) {if(!p) { puts("0"); return; }while(p) stk[++ tp] = p%10, p/=10;while(tp) putchar(stk[tp--] + '0');putchar('n');
}const LL mod=1e9+7;
const double PI=acos(-1.0);
const LL inf=1e14;
const int N=5e5+15;double fx,fy,px,py,v,t,vx,vy,wx,wy;
double ha(double x){return x*x;}
double getdis(double x,double y)
{return sqrt(ha(x)+ha(y));
}
int check(double x,int flag)
{double cx=vx*x,cy=vy*x;double dis=getdis(cx-px,cy-py);if(flag)dis-=v*t;if(dis<=v*x)return 1;return 0;
}
int main()
{scanf("%lf%lf%lf%lf",&fx,&fy,&px,&py);scanf("%lf%lf",&v,&t);scanf("%lf%lf%lf%lf",&vx,&vy,&wx,&wy);px-=fx,py-=fy;double cx,cy;cx=vx*t,cy=vy*t;double dis=getdis(cx-px,cy-py);if(dis<=t*v){double l=0,r=t;while(r-l>=1e-8){double mid=(l+r)/2;if(check(mid,0))r=mid;else l=mid;}printf("%.12lf",l);}else{px-=cx;py-=cy;vx=wx,vy=wy;double l=0,r=1000000000;while(r-l>1e-8){double mid=(l+r)/2;if(check(mid,1))r=mid;else l=mid;}printf("%.12lf",l+t);}return 0;
}

 

转载于:.html

本文发布于:2024-01-31 18:46:34,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/170669799730593.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:几何   Chip   codeforces   Rangers   Rescue
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23