A10217 | Save Luke
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Luke Skywalker got locked up in a rubbish shredder between two presses. R2D2 is already working on his rescue, but Luke needs to stay alive as long as possible. For simplicity we will assume that everything happens on a straight line, the presses are initially at coordinates $0$ and $L$ , and they move towards each other with speed $v_{1}$ and $v_{2}$ , respectively. Luke has width $d$ and is able to choose any position between the presses. Luke dies as soon as the distance between the presses is less than his width. Your task is to determine for how long Luke can stay alive.
输入格式
The first line of the input contains four integers $d$ , $L$ , $v_{1}$ , $v_{2}$ ( $1<=d,L,v_{1},v_{2}<=10000,d<L$ ) — Luke's width, the initial position of the second press and the speed of the first and second presses, respectively.
输出格式
Print a single real value — the maximum period of time Luke can stay alive for. Your 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 .
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 .
输入输出样例
输入 #1
2 6 2 2
输出 #1
1.00000000000000000000
输入 #2
1 9 1 2
输出 #2
2.66666666666666650000
In the first sample Luke should stay exactly in the middle of the segment, that is at coordinates $[2;4]$ , as the presses move with the same speed.
In the second sample he needs to occupy the position . In this case both presses move to his edges at the same time.
In the second sample he needs to occupy the position . In this case both presses move to his edges at the same time.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted