Codeforces Round #327 (Div. 2) D. Chip 'n Dale Rescue Rangers 二分 物理

时间:2022-05-16 00:50:53

D. Chip 'n Dale Rescue Rangers

Time Limit: 20 Sec

Memory Limit: 256 MB

题目连接

http://codeforces.com/contest/591/problem/D

Description

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 Codeforces Round #327 (Div. 2) D. Chip 'n Dale Rescue Rangers 二分 物理 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 Codeforces Round #327 (Div. 2) D. Chip 'n Dale Rescue Rangers 二分 物理 and Codeforces Round #327 (Div. 2) D. Chip 'n Dale Rescue Rangers 二分 物理.

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 Codeforces Round #327 (Div. 2) D. Chip 'n Dale Rescue Rangers 二分 物理.

Sample Input

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

Sample Output

3.729935587093555327

HINT

题意

你一开始在x1,y1,你要走到x2,y2,但是这时候有风,风在t秒前风速是(vx,vy)在t秒后,风速是(wx,wy)

你和风的相对速度,最多差距vmax,保证vmax大于风速,然后问你,最少什么时候到达

题解:

反着做,把坐标系变成风,那么就可以看做终点加了一个和风相反的速度,然后你负责追它就好了

二分时间,然后跑

但是,二分的时候,千万不要用eps,直接for就好了

代码

#include<iostream>
#include<stdio.h>
#include<cmath>
using namespace std;
double eps = 1e-;
double dis(double x1,double yy1,double x2,double y2)
{
return sqrt((x1-x2)*(x1-x2)+(yy1-y2)*(yy1-y2));
}
double yy1;
double x1,x2,y2,v,t,vx,vy,wx,wy;
int check(double tt)
{
double xx=x2,yy=y2;
if(tt<=t)
{
xx = xx + -vx * tt;
yy = yy + -vy * tt;
}
else
{
xx = xx + -vx * t + -wx * (tt - t);
yy = yy + -vy * t + -wy * (tt - t);
}
if(dis(x1,yy1,xx,yy)<=tt*v)
return ;
return ;
}
int main()
{
cin>>x1>>yy1>>x2>>y2>>v>>t>>vx>>vy>>wx>>wy;
double l = 0.00,r = t;
for(int i=;i<=;i++)
{
double mid = (l+r)/2.0;
if(check(mid))r=mid;
else l=mid;
}
if(check(t))
{
printf("%.12lf\n",l);
return ;
}
l = t, r = 9999999999.0;
for(int i=;i<=;i++)
{
double mid = (l+r)/2.0;
if(check(mid))r=mid;
else l=mid;
}
printf("%.12lf\n",l);
}

Codeforces Round #327 (Div. 2) D. Chip 'n Dale Rescue Rangers 二分 物理的更多相关文章

  1. Codeforces Round &num;327 &lpar;Div&period; 1&rpar; B&period; Chip &&num;39&semi;n Dale Rescue Rangers 二分

    题目链接: 题目 B. Chip 'n Dale Rescue Rangers time limit per test:1 second memory limit per test:256 megab ...

  2. codeforces 590B B&period; Chip &&num;39&semi;n Dale Rescue Rangers&lpar;二分&plus;计算几何&rpar;

    题目链接: B. Chip 'n Dale Rescue Rangers time limit per test 1 second memory limit per test 256 megabyte ...

  3. cf590B Chip &&num;39&semi;n Dale Rescue Rangers

    B. Chip 'n Dale Rescue Rangers time limit per test 1 second memory limit per test 256 megabytes inpu ...

  4. codeforces590b&sol;&sol;Chip &&num;39&semi;n Dale Rescue Rangers&sol;&sol;Codeforces Round &num;327 &lpar;Div&period; 1&rpar;

    题意:从一点到另一点,前t秒的风向与t秒后风向不同,问到另一点的最短时间 挺难的,做不出来,又参考了别人的代码.先得到终点指向起点的向量,设T秒钟能到.如果T>t则受风1作用t秒,风2作用T-t ...

  5. Codeforces Round &num;327 &lpar;Div&period; 2&rpar; A&period; Wizards&&num;39&semi; Duel 水题

    A. Wizards' Duel Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/prob ...

  6. Codeforces Round &num;327 &lpar;Div&period; 2&rpar; E&period; Three States BFS

    E. Three States Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/probl ...

  7. Codeforces Round &num;327 &lpar;Div&period; 2&rpar; C&period; Median Smoothing 找规律

    C. Median Smoothing Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/p ...

  8. Codeforces Round &num;327 &lpar;Div&period; 2&rpar; B&period; Rebranding 水题

    B. Rebranding Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/problem ...

  9. Codeforces Round &num;327 &lpar;Div&period; 1&rpar;&comma; problem&colon; &lpar;A&rpar; Median Smoothing

    http://codeforces.com/problemset/problem/590/A: 在CF时没做出来,当时直接模拟,然后就超时喽. 题意是给你一个0 1串然后首位和末位固定不变,从第二项开 ...

随机推荐

  1. Code Snippets 代码片段

    Code Snippets 代码片段       1.Title : 代码片段的标题 2.Summary : 代码片段的描述文字 3.Platform : 可以使用代码片段的平台,有IOS/OS X/ ...

  2. Windows系统盘占用空间分析

    磁盘分析 本机的系统盘是C盘,操作系统是Windows 7 专业版,通过磁盘属性可以看到C盘的已用空间是69.4G. 而我们运行自己编写的脚本(脚本程序参考附录,统计原理:计算目录下各个文件的大小,然 ...

  3. 9本java程序员必读的书(附下载地址)

    本文列出的9本书在Java程序员界都是被认为很棒的书.当一个程序员开始初学Java时,他的第一个问题应该是如何选择一本书来作为指导学习Java.这个问题也就表明,相对于其他的教程和博客,Java书籍还 ...

  4. javascript --- 实时监听输入框值的变化

    实时监听文本框值变化是非常常见的功能,通常最简单的办法就是用keyup,keydown来实现,但是这种方法有两个问题,一个是当直接复制粘贴的时候没法监听到事件,另外一个问题是在移动端,使用删除键删除输 ...

  5. leetcode 144&period; Binary Tree Preorder Traversal ----- java

    Given a binary tree, return the preorder traversal of its nodes' values. For example:Given binary tr ...

  6. 使用jQuery获取GridView的数据行的数量

    一个同事在群里抛出了上述的问题,另一个同事给出了答案,试了一下,还不错.贴出代码和效果图: <html xmlns="http://www.w3.org/1999/xhtml&quot ...

  7. ORA-01790 错误处理

    今天在练手的时候出现了一个ORA-01790 的错误,决定把他写下来保留起来. 先来创建两张测试用的简单的表. SQL> create table test01 (id number(3),na ...

  8. 从一句SQL得出的启示

    select count(*) + 1 from `table` where rank > (select rank from `table` where id = *) 上面那句SQL 给了我 ...

  9. 从mysql数据库取一条记录里的某个字段的值

    <?php $link = mysqli_connect("localhost","root","root","dbname ...

  10. How to create your iOS team provisioning profile &quest;

    From Apple Developer: https://developer.apple.com/library/content/documentation/IDEs/Conceptual/AppS ...