305378: CF1017E. The Supersonic Rocket
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
The Supersonic Rocket
题意翻译
平面上给定两个点集,判定两个点集分别形成的凸多边形能否通过旋转、平移重合。 点集大小 $\le 10^5$,坐标范围 $[0,10^8]$题目描述
After the war, the supersonic rocket became the most common public transportation. Each supersonic rocket consists of two "engines". Each engine is a set of "power sources". The first engine has $ n $ power sources, and the second one has $ m $ power sources. A power source can be described as a point $ (x_i, y_i) $ on a 2-D plane. All points in each engine are different. You can manipulate each engine separately. There are two operations that you can do with each engine. You can do each operation as many times as you want. 1. For every power source as a whole in that engine: $ (x_i, y_i) $ becomes $ (x_i+a, y_i+b) $ , $ a $ and $ b $ can be any real numbers. In other words, all power sources will be shifted. 2. For every power source as a whole in that engine: $ (x_i, y_i) $ becomes $ (x_i \cos \theta - y_i \sin \theta, x_i \sin \theta + y_i \cos \theta) $ , $ \theta $ can be any real number. In other words, all power sources will be rotated. The engines work as follows: after the two engines are powered, their power sources are being combined (here power sources of different engines may coincide). If two power sources $ A(x_a, y_a) $ and $ B(x_b, y_b) $ exist, then for all real number $ k $ that $ 0 \lt k \lt 1 $ , a new power source will be created $ C_k(kx_a+(1-k)x_b,ky_a+(1-k)y_b) $ . Then, this procedure will be repeated again with all new and old power sources. After that, the "power field" from all power sources will be generated (can be considered as an infinite set of all power sources occurred). A supersonic rocket is "safe" if and only if after you manipulate the engines, destroying any power source and then power the engine, the power field generated won't be changed (comparing to the situation where no power source erased). Two power fields are considered the same if and only if any power source in one field belongs to the other one as well. Given a supersonic rocket, check whether it is safe or not.输入输出格式
输入格式
The first line contains two integers $ n $ , $ m $ ( $ 3 \le n, m \le 10^5 $ ) — the number of power sources in each engine. Each of the next $ n $ lines contains two integers $ x_i $ and $ y_i $ ( $ 0\leq x_i, y_i\leq 10^8 $ ) — the coordinates of the $ i $ -th power source in the first engine. Each of the next $ m $ lines contains two integers $ x_i $ and $ y_i $ ( $ 0\leq x_i, y_i\leq 10^8 $ ) — the coordinates of the $ i $ -th power source in the second engine. It is guaranteed that there are no two or more power sources that are located in the same point in each engine.
输出格式
Print "YES" if the supersonic rocket is safe, otherwise "NO". You can print each letter in an arbitrary case (upper or lower).
输入输出样例
输入样例 #1
3 4
0 0
0 2
2 0
0 2
2 2
2 0
1 1
输出样例 #1
YES
输入样例 #2
3 4
0 0
0 2
2 0
0 2
2 2
2 0
0 0
输出样例 #2
NO