446. Rotation Estimation

Time limit per test: 0.75 second(s)
Memory limit: 262144 kilobytes
input: standard
output: standard

Mr. Nod is an astrologist and has defined a new constellation. He took two photos of the constellation to foretell a future of his friend. The constellation consists of n stars. The shape of the constellation in these photos are the same, but the angle of them are different because these photos were taken on a different day. He foretells a future by the difference of the angle of them. Your job is to write a program to calculate the difference of the angle of two constellation.
Input
The input is given in the following format:
n
x1,1 y1,1
...
x1,n y1,n
x2,1 y2,1
...
x2,n y2,n
The first line of the input contains a positive integer n (n ≤ 1000). The next n lines contain two real numbers x1,i and y1,i (|x1,i|, |y1,i| ≤ 100), where (x1,i, y1,i) denotes the coordinates of the i-th star of the constellation in the first photo. The next n lines contain two real numbers x2,i and y2,i (|x2,i|, |y2,i| ≤ 100), where (x2,i, y2,i) denotes the coordinates of the i-th star of the constellation in the second photo. Note that the ordering of the stars does not matter for the sameness. It is guaranteed that distance between every pair of stars in each photo is larger than 10-5.
Output
You should print a non-negative real number which is the difference of the angle of the constellation in the first photo and in the second photo. The difference should be in radian, and should not be negative. If there are two or more solutions, you should print the smallest one, i.e. your solution should be an angle between 0 and pi radians, inclusive. The difference may be printed with any number of digits after decimal point, provided the absolute error does not exceed 10-7.
Example(s)
sample input
sample output
3
0.0 0.0
1.0 1.0
0.0 1.0
3.0 3.0
2.0 2.0
3.0 2.0
3.14159265359