#Lutece0610. PAC-Phone

PAC-Phone

Migrated from Lutece 610 PAC-Phone

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Smart phone is one of the most fashion hi-tech things today, and the most profitable. Invited by the Pakiistanii air force, wolf5x joined their project that is aiming at developing a brand new smart phone to compete with IPhone (Tomato says the IPhone he sells is cheap and powerful, so wolf5x wants to design a better one!). Its name will be PAC-Phone! Now wolf5x is busy at designing a face recognition system, which can tell whether the picture taken by the camera on the phone belongs to the same person as the one stored in the database. It does the comparison in an ordinary way: First the system calculates some feature values of each picture and generates a new picture with points (no colors, no lines, just black points) for it. Then it compares whether the two newly-generated pictures are similar.

The work is almost finished; only the comparison module needs to be done. But wolf5x is not good at designing such an algorithm, so he turns to you for help. You can regard a picture as a set of points in the xOy plane. Two pictures are similar if and only if one set of points can be transformed into the other one by applying finite times the operations listed below:

  1. Translation. Move each point in the set from (Xi,Yi)(X_i, Y_i) to (Xi+DX,Yi+DX)(X_i+DX, Y_i+DX), where (Xi,Yi)(X_i, Y_i) is the original coordinate of the ithi_{th} point.
  2. Scaling. Change each point’s coordinate from (Xi,Yi)(X_i, Y_i) to (k×Xi,k×Yi)(k\times X_i, k\times Y_i)
  3. Rotation. Rotate each point clockwise around the Origin through a same angle.

Please help him write this module. To test whether it works, you’ll be given some test data. Use your program to determine whether the two given sets are similar.

Input

There are multiple cases. First line contains a single integer TT, the number of cases.

Each case begins with an integer NN, the number of points of each set.

Then follow NN lines each containing two real numbers XiX_i YiY_i, the coordinate of the ithi_{th} point in the first set.

Then follow NN lines each containing two real numbers XiX_i YiY_i, the coordinate of the ithi_{th} point in the second set.

The input guarantees that T20T\leq 20, 20000Xi,Yi20000-20000 \leq X_i, Y_i \leq 20000. For 90%90\% cases, N1000N \leq 1000. For all the cases, 1N200001 \leq N \leq 20000.

Output

One case per line. First print Case #i: , where ii is the case number. Then YES if two sets are similar, otherwise NO.

Samples

2
4
0 0
1 1
0 1
1 0
0.5 0.5
1.5 -2.5
4.5 -1.5
3.5 1.5
3
0 0
0 4
-3 0
0 0
0 3
4 3
Case #1: YES
Case #2: NO

Note

For sample 11, transform the first set by: rotate through atan(3)atan(3) rad \rightarrow scale by sqrt(10)sqrt(10) \rightarrow translate by (0.5,0.5)(0.5, 0.5). Note that the order the points are given doesn’t matter.

For sample 22, you don’t have a mirror, so the first set can never be transformed into the second one.

Resources

6th BUPT Programming Contest Final