시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 256 MB83337.500%

문제

There is an emotional moment in the computer game called <<Ostap and chairs>>, when each Ostap, from a crowd of tiny Ostaps, runs to his own chair. The graphics of the event has been drawn already: there are two images --- the first image is of Ostaps (with predefined coordinates $x_i$), and the second image is of the chairs (their coordinates $y_i$ are also known).

Before you start a game, you cannot move Ostaps or chairs, but you can change the scale of the second picture using a linear transformation $y_i \rightarrow k*y_i+b$. After that, the first Ostap runs to the first chair, then the second Ostap runs to the second chair, etc., and the total elapsed time is summed up. The player's task is to make this time as short as possible, i.e. minimize the total summarized distance.

Your task is to find the minimum possible value: $$\sum_{i=1}^{N} |x_i-(k y_i+b)|$$

입력

The first line of the input file contains a single integer $N$ --- the number of Ostaps and chairs ($2 \le N \le 300$). Each of the following two lines contains $N$ integers: the second line of the file contains $x_i$ --- the coordinates of Ostaps, the third line contains $y_i$ --- the coordinates of chairs ($1 \le i \le N$, $|x_i|, |y_i| \le 10^3$). All $x_i$ are different, all $y_i$ are different.

출력

In your answer, print three real numbers: $D$ --- the minimum possible value of the total distance, $K$ and $B$ --- coefficients, with which such distance is achievable.

The relative or absolute deviation of the distance $D$ from the optimal must not exceed $10^{-9}$. The total distance calculated using the coefficients $K$ and $B$ must match $D$ with the same precision.

예제 입력 1

3
0 3 -5
4 1 -2 

예제 출력 1

5.5 0.8333333333 -3.3333333333

예제 입력 2

2
-7 12
-7 12

예제 출력 2

0 1 0