A12019 | Barcelonian Distance
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
In this problem we consider a very simplified model of Barcelona city.
Barcelona can be represented as a plane with streets of kind $x = c$ and $y = c$ for every integer $c$ (that is, the rectangular grid). However, there is a detail which makes Barcelona different from Manhattan. There is an avenue called Avinguda Diagonal which can be represented as a the set of points $(x, y)$ for which $ax + by + c = 0$ .
One can walk along streets, including the avenue. You are given two integer points $A$ and $B$ somewhere in Barcelona. Find the minimal possible distance one needs to travel to get to $B$ from $A$ .
Barcelona can be represented as a plane with streets of kind $x = c$ and $y = c$ for every integer $c$ (that is, the rectangular grid). However, there is a detail which makes Barcelona different from Manhattan. There is an avenue called Avinguda Diagonal which can be represented as a the set of points $(x, y)$ for which $ax + by + c = 0$ .
One can walk along streets, including the avenue. You are given two integer points $A$ and $B$ somewhere in Barcelona. Find the minimal possible distance one needs to travel to get to $B$ from $A$ .
输入格式
The first line contains three integers $a$ , $b$ and $c$ ( $-10^9\leq a, b, c\leq 10^9$ , at least one of $a$ and $b$ is not zero) representing the Diagonal Avenue.
The next line contains four integers $x_1$ , $y_1$ , $x_2$ and $y_2$ ( $-10^9\leq x_1, y_1, x_2, y_2\leq 10^9$ ) denoting the points $A = (x_1, y_1)$ and $B = (x_2, y_2)$ .
The next line contains four integers $x_1$ , $y_1$ , $x_2$ and $y_2$ ( $-10^9\leq x_1, y_1, x_2, y_2\leq 10^9$ ) denoting the points $A = (x_1, y_1)$ and $B = (x_2, y_2)$ .
输出格式
Find the minimum possible travel distance between $A$ and $B$ . Your answer is considered correct if its absolute or relative error does not exceed $10^{-6}$ .
Formally, let your answer be $a$ , and the jury's answer be $b$ . Your answer is accepted if and only if $\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-6}$ .
Formally, let your answer be $a$ , and the jury's answer be $b$ . Your answer is accepted if and only if $\frac{|a - b|}{\max{(1, |b|)}} \le 10^{-6}$ .
输入输出样例
输入 #1
1 1 -3 0 3 3 0
输出 #1
4.2426406871
输入 #2
3 1 -9 0 3 3 -1
输出 #2
6.1622776602
The first example is shown on the left picture while the second example us shown on the right picture below. The avenue is shown with blue, the origin is shown with the black dot.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted