A11618 | Fifa and Fafa
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Fifa and Fafa are sharing a flat. Fifa loves video games and wants to download a new soccer game. Unfortunately, Fafa heavily uses the internet which consumes the quota. Fifa can access the internet through his Wi-Fi access point. This access point can be accessed within a range of $r$ meters (this range can be chosen by Fifa) from its position. Fifa must put the access point inside the flat which has a circular shape of radius $R$ . Fifa wants to minimize the area that is not covered by the access point inside the flat without letting Fafa or anyone outside the flat to get access to the internet.
The world is represented as an infinite 2D plane. The flat is centered at $(x_{1},y_{1})$ and has radius $R$ and Fafa's laptop is located at $(x_{2},y_{2})$ , not necessarily inside the flat. Find the position and the radius chosen by Fifa for his access point which minimizes the uncovered area.
The world is represented as an infinite 2D plane. The flat is centered at $(x_{1},y_{1})$ and has radius $R$ and Fafa's laptop is located at $(x_{2},y_{2})$ , not necessarily inside the flat. Find the position and the radius chosen by Fifa for his access point which minimizes the uncovered area.
输入格式
The single line of the input contains 5 space-separated integers $R,x_{1},y_{1},x_{2},y_{2}$ ( $1<=R<=10^{5}$ , $|x_{1}|,|y_{1}|,|x_{2}|,|y_{2}|<=10^{5}$ ).
输出格式
Print three space-separated numbers $x_{ap},y_{ap},r$ where $(x_{ap},y_{ap})$ is the position which Fifa chose for the access point and $r$ is the radius of its range.
Your answer will be considered correct if the radius does not differ from optimal more than $10^{-6}$ absolutely or relatively, and also the radius you printed can be changed by no more than $10^{-6}$ (absolutely or relatively) in such a way that all points outside the flat and Fafa's laptop position are outside circle of the access point range.
Your answer will be considered correct if the radius does not differ from optimal more than $10^{-6}$ absolutely or relatively, and also the radius you printed can be changed by no more than $10^{-6}$ (absolutely or relatively) in such a way that all points outside the flat and Fafa's laptop position are outside circle of the access point range.
输入输出样例
输入 #1
5 3 3 1 1
输出 #1
3.7677669529663684 3.7677669529663684 3.914213562373095
输入 #2
10 5 5 5 15
输出 #2
5.0 5.0 10.0
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted