Codeforces Round #327 (Div. 1) B. Chip 'n Dale Rescue Rangers 二分
题目链接:
题目
B. Chip 'n Dale Rescue Rangers
time limit per test:1 second
memory limit per test:256 megabytes
问题描述
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.
输入
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 .
输出
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 .
样例
input
0 0 5 5
3 2
-1 -1
-1 0
output
3.729935587093555327
题意
救援飞船在(x1,y1)点,遇难者在(x2,y2)点,在前t秒时间里刮一号风:(vx,vy),在之后的时间里刮二号风(wx,wy),你飞船的最大速度为v,v大于风的速度。问你飞船能够到达遇难者的最短的时间。
题解
首先,如果给我们的时间越多,我们就越能够接近飞船!(一个特殊情况就是把飞船的前进方向控制在直线上。)也就是说,时间在可达和不可达的问题上是单调的!,我们可以对时间进行二分!求出最小的可行解!
那么要怎么判断给定的时间t,飞船能不能到达遇难者的位置呢?
其实只要给定固定的时间,我们的最优行路线是固定的!
速度是可以叠加的,我们可以考虑在t秒的时间,只有风的作用下的情况,我们会从(x1,y1)到达(x1+tvx,y1+tvy),记为(xm,ym),接下来再考虑没有风的情况下用速度v是否能从(xm,ym)到达(xt,yt)就可以了,即判断v*t>=dis((xm,ym)->(xt,yt))是否成立;
那么有两段风怎么办?
我们可以考虑先判断一下t秒这个时间是否可以到达,如果可以,那我们二分的范围就是(0,t),且只要考虑第一个风。 如果不可以,就二分(t,INF),且两个风都要考虑(利用叠加的原理,其实和 上面一种情况没什么差。)。
代码
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
typedef __int64 LL;
int xs,ys,xt,yt,v,t,vx,vy,wx,wy;
const int INF=0x3f3f3f3f;
const int TIM=1000;
const double eps=1e-8;
int Scan(){ int x; scanf("%d",&x); return x; }
void input(){
xs=Scan(); ys=Scan();
xt=Scan(); yt=Scan();
v=Scan(); t=Scan();
vx=Scan(); vy=Scan();
wx=Scan(); wy=Scan();
}
int main(){
input();
double xm=xs+vx*t,ym=ys+vy*t;
double dis=sqrt((xt-xm)*(xt-xm)+(yt-ym)*(yt-ym));
if(1.0*v*t>=dis+eps){
double l=0,r=t;
while(r-l>eps){
double mid=l+(r-l)/2;
double _xm=xs+vx*mid,_ym=ys+vy*mid;
double _dis=sqrt((xt-_xm)*(xt-_xm)+(yt-_ym)*(yt-_ym));
if(1.0*v*mid>=_dis+eps) r=mid;
else l=mid;
}
printf("%.18lf\n",r);
}else{
double l=0,r=INF;
while(r-l>eps){
double mid=l+(r-l)/2;
double _xm=xm+wx*mid,_ym=ym+wy*mid;
double _dis=sqrt((xt-_xm)*(xt-_xm)+(yt-_ym)*(yt-_ym));
if(1.0*v*(mid+t)>=_dis+eps) r=mid;
else l=mid;
}
printf("%.18lf\n",r+t);
}
return 0;
}
Codeforces Round #327 (Div. 1) B. Chip 'n Dale Rescue Rangers 二分的更多相关文章
- Codeforces Round #327 (Div. 2) D. Chip 'n Dale Rescue Rangers 二分 物理
D. Chip 'n Dale Rescue Rangers Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/co ...
- 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 megabyte ...
- cf590B Chip 'n Dale Rescue Rangers
B. Chip 'n Dale Rescue Rangers time limit per test 1 second memory limit per test 256 megabytes inpu ...
- codeforces590b//Chip 'n Dale Rescue Rangers//Codeforces Round #327 (Div. 1)
题意:从一点到另一点,前t秒的风向与t秒后风向不同,问到另一点的最短时间 挺难的,做不出来,又参考了别人的代码.先得到终点指向起点的向量,设T秒钟能到.如果T>t则受风1作用t秒,风2作用T-t ...
- Codeforces Round #327 (Div. 2) A. Wizards' Duel 水题
A. Wizards' Duel Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/prob ...
- Codeforces Round #327 (Div. 2) E. Three States BFS
E. Three States Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/probl ...
- Codeforces Round #327 (Div. 2) C. Median Smoothing 找规律
C. Median Smoothing Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/p ...
- Codeforces Round #327 (Div. 2) B. Rebranding 水题
B. Rebranding Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/591/problem ...
- Codeforces Round #327 (Div. 1), problem: (A) Median Smoothing
http://codeforces.com/problemset/problem/590/A: 在CF时没做出来,当时直接模拟,然后就超时喽. 题意是给你一个0 1串然后首位和末位固定不变,从第二项开 ...
随机推荐
- SQL里IN的用法以及优化
1.in后条件不多,可以考虑主表建索引,或用union all 代替 2. in 和 exists的区别: 如果子查询得出的结果集记录较少,主查询中的表较大且又有索引时应该用in, 反之如果外层的主查 ...
- 查询sql 并且读取
//显示地址 //VBSBegin // Set obj = GetObject("winmgmts:\\.\root\cimv2") // Set IPConfigSet = o ...
- in/exists not in/not exists null
in/not in exists/not exists null的理解 两个测试表 create table tmp01 as with tmp as ( select '1' as id from ...
- iOS使用keychain存储密码
iOS设备中的Keychain是一个安全的存储容器.通常情况下,可以用NSUserDefaults存储数据信息,但是对于一些私密信息,比如账号.密码等等,就需要使用更为安全的keychain了.苹果自 ...
- asp.net 组织结构图控件
记得之前做项目的时候客户需要看一个组织结构图,从而了解一下公司的概况,本来自己之前没有做过这方面的控件,只好找度娘,出于对项目的完美,网上很多控件画面感比较渣,后来只能在这些个中挑个比较好的来做,先看 ...
- CentOS 7.2 无法生成 coredump文件
CentOS版本 cat /etc/centos-release CentOS Linux release 7.2.1511 (Core) 设置ulimit -c ulimited 依旧无法生成co ...
- UIView背景渐变三种方法
//此作品非原创 #import "ACViewController.h" @interface ACViewController () @end @implementation ...
- 修改ubuntu按电源键触发效果
GUI内终端执行如下指令,或者加入开机启动脚本内 gsettings set org.gnome.settings-daemon.plugins.power button-power shutdown ...
- 处理jquery版本之间冲突
处理jquery版本之间冲突 前端开发们都知道jquery版本有好多,之间冲突很纠结.比如我刚来这公司的时候,后端的哥们用的是jQuery 1.3.2,我了个去,那哥们好久没更新了.我写的效果插件都是 ...
- TCP协议承载的DNS报文,DNS报文首部前多出两个字节的DNS报文长度字段,是何意义?
一.TCP报文头部简介 ●源.目标端口号字段:占16比特.TCP协议通过使用"端口"来标识源端和目标端的应用进程.端口号可以使用0到65535之间的任何数字.在收到服务请求时,操作 ...