A12517 | Chladni Figure
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Inaka has a disc, the circumference of which is $n$ units. The circumference is equally divided by $n$ points numbered clockwise from $1$ to $n$ , such that points $i$ and $i + 1$ ( $1 \leq i < n$ ) are adjacent, and so are points $n$ and $1$ .
There are $m$ straight segments on the disc, the endpoints of which are all among the aforementioned $n$ points.
Inaka wants to know if her image is rotationally symmetrical, i.e. if there is an integer $k$ ( $1 \leq k < n$ ), such that if all segments are rotated clockwise around the center of the circle by $k$ units, the new image will be the same as the original one.
There are $m$ straight segments on the disc, the endpoints of which are all among the aforementioned $n$ points.
Inaka wants to know if her image is rotationally symmetrical, i.e. if there is an integer $k$ ( $1 \leq k < n$ ), such that if all segments are rotated clockwise around the center of the circle by $k$ units, the new image will be the same as the original one.
输入格式
The first line contains two space-separated integers $n$ and $m$ ( $2 \leq n \leq 100\,000$ , $1 \leq m \leq 200\,000$ ) — the number of points and the number of segments, respectively.
The $i$ -th of the following $m$ lines contains two space-separated integers $a_i$ and $b_i$ ( $1 \leq a_i, b_i \leq n$ , $a_i \neq b_i$ ) that describe a segment connecting points $a_i$ and $b_i$ .
It is guaranteed that no segments coincide.
The $i$ -th of the following $m$ lines contains two space-separated integers $a_i$ and $b_i$ ( $1 \leq a_i, b_i \leq n$ , $a_i \neq b_i$ ) that describe a segment connecting points $a_i$ and $b_i$ .
It is guaranteed that no segments coincide.
输出格式
Output one line — "Yes" if the image is rotationally symmetrical, and "No" otherwise (both excluding quotation marks).
You can output each letter in any case (upper or lower).
You can output each letter in any case (upper or lower).
输入输出样例
输入 #1
12 6 1 3 3 7 5 7 7 11 9 11 11 3
输出 #1
Yes
输入 #2
9 6 4 5 5 6 7 8 8 9 1 2 2 3
输出 #2
Yes
输入 #3
10 3 1 2 3 2 7 2
输出 #3
No
输入 #4
10 2 1 6 2 7
输出 #4
Yes
The first two examples are illustrated below. Both images become the same as their respective original ones after a clockwise rotation of $120$ degrees around the center.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted