#ABC139F. Engines
Engines
题目描述
E869120 is initially standing at the origin in a two-dimensional plane.
He has engines, which can be used as follows:
- When E869120 uses the -th engine, his - and -coordinate change by and , respectively. In other words, if E869120 uses the -th engine from coordinates , he will move to the coordinates .
- E869120 can use these engines in any order, but each engine can be used at most once. He may also choose not to use some of the engines.
He wants to go as far as possible from the origin. Let be his final coordinates. Find the maximum possible value of , the distance from the origin.
E869120 最初站在二维平面的原点 。
他有 个发动机,可以如下使用:
- 当 E869120 使用 -th 引擎时,他的 - 和 - 坐标分别变化了 和 。换句话说,如果E869120从坐标 开始使用 /-th引擎,他将移动到坐标 。
- E869120 可以按照任意顺序使用这些引擎,但每个引擎最多只能使用一次。他也可以选择不使用其中一些引擎。
他希望从原点出发越远越好。设 为他的最终坐标。求离原点的距离 的最大可能值。
输入格式
输入内容按以下格式标准输入:
输出格式
以实数形式打印与原点的最大可能最终距离。如果与真实答案的相对误差或绝对误差不超过 ,则认为输出正确。
样例 #1
样例输入 #1
3
0 10
5 -5
-5 -5
样例输出 #1
10.000000000000000000000000000000000000000000000000
样例 #2
样例输入 #2
5
1 1
1 0
0 1
-1 0
0 -1
样例输出 #2
2.828427124746190097603377448419396157139343750753
样例 #3
样例输入 #3
5
1 1
2 2
3 3
4 4
5 5
样例输出 #3
21.213203435596425732025330863145471178545078130654
样例 #4
样例输入 #4
3
0 0
0 1
1 0
样例输出 #4
1.414213562373095048801688724209698078569671875376
样例 #5
样例输入 #5
1
90447 91000
样例输出 #5
128303.000000000000000000000000000000000000000000000000
样例 #6
样例输入 #6
2
96000 -72000
-72000 54000
样例输出 #6
120000.000000000000000000000000000000000000000000000000
样例 #7
样例输入 #7
10
1 2
3 4
5 6
7 8
9 10
11 12
13 14
15 16
17 18
19 20
样例输出 #7
148.660687473185055226120082139313966514489855137208
说明
数据规模与约定
- 输入值均为整数。
样例 解释
如果我们以以下三种方式之一使用引擎,那么最终的原点距离可以是 :
- 使用引擎 移动到 。
- 使用引擎 移动到 ,然后使用引擎 移动到 。
- 使用引擎 移动到 ,然后使用引擎 移动到 。
距离不能大于 ,因此可能的最大距离是 。
样例 解释
最大可能的最终距离是 。其中一种方法是
- 使用引擎 移动到 ,然后使用引擎 移动到 ,最后使用引擎 移动到 。
样例 解释
如果我们按照 $1 \rightarrow 2 \rightarrow 3 \rightarrow 4 \rightarrow 5$ 的顺序使用所有引擎,我们将在 处结束,与原点的距离为 。
样例 解释
可能有 没用的引擎。
样例 解释
请注意,只能有一个引擎。
样例 解释
也只能有两个引擎。