A11882 | The Supersonic Rocket
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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.
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).
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
The first sample:
Those near pairs of blue and orange points actually coincide.First, manipulate the first engine: use the second operation with $\theta = \pi$ (to rotate all power sources $180$ degrees).
The power sources in the first engine become $(0, 0)$ , $(0, -2)$ , and $(-2, 0)$ .
Second, manipulate the second engine: use the first operation with $a = b = -2$ .
The power sources in the second engine become $(-2, 0)$ , $(0, 0)$ , $(0, -2)$ , and $(-1, -1)$ .
You can examine that destroying any point, the power field formed by the two engines are always the solid triangle $(0, 0)$ , $(-2, 0)$ , $(0, -2)$ .
In the second sample, no matter how you manipulate the engines, there always exists a power source in the second engine that power field will shrink if you destroy it.
Those near pairs of blue and orange points actually coincide.First, manipulate the first engine: use the second operation with $\theta = \pi$ (to rotate all power sources $180$ degrees).
The power sources in the first engine become $(0, 0)$ , $(0, -2)$ , and $(-2, 0)$ .
Second, manipulate the second engine: use the first operation with $a = b = -2$ .
The power sources in the second engine become $(-2, 0)$ , $(0, 0)$ , $(0, -2)$ , and $(-1, -1)$ .
You can examine that destroying any point, the power field formed by the two engines are always the solid triangle $(0, 0)$ , $(-2, 0)$ , $(0, -2)$ .
In the second sample, no matter how you manipulate the engines, there always exists a power source in the second engine that power field will shrink if you destroy it.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted