A10791 | Sherlock's bet to Moriarty
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Sherlock met Moriarty for a final battle of wits. He gave him a regular $n$ sided convex polygon. In addition to it, he gave him certain diagonals to form regions on the polygon. It was guaranteed that the diagonals did not intersect in interior points.
He took each of the region and calculated its importance value. Importance value for a region formed by vertices $a_{1},a_{2},...\ ,a_{x}$ of the polygon will be given by $2^{a_{1}}+2^{a_{2}}+...+2^{a_{x}}$ . Then, he sorted these regions on the basis of their importance value in ascending order. After that he assigned each region an index from $1$ to $k$ , where $k$ is the number of regions, and index of region is its position in the sorted array calculated above.
He wants Moriarty to color the regions using not more than $20$ colors, such that two regions have same color only if all the simple paths between these two regions have at least one region with color value less than the color value assigned to these regions. Simple path between two regions $f$ and $h$ is a sequence of regions $r_{1},r_{2},...\ r_{t}$ such that $r_{1}=f$ , $r_{t}=h$ , for each $1<=i<t$ regions $r_{i}$ and $r_{i+1}$ share an edge, and $r_{i}=r_{j}$ if and only if $i=j$ .
Moriarty couldn't answer and asks Sherlock to solve it himself. Help Sherlock in doing so.
He took each of the region and calculated its importance value. Importance value for a region formed by vertices $a_{1},a_{2},...\ ,a_{x}$ of the polygon will be given by $2^{a_{1}}+2^{a_{2}}+...+2^{a_{x}}$ . Then, he sorted these regions on the basis of their importance value in ascending order. After that he assigned each region an index from $1$ to $k$ , where $k$ is the number of regions, and index of region is its position in the sorted array calculated above.
He wants Moriarty to color the regions using not more than $20$ colors, such that two regions have same color only if all the simple paths between these two regions have at least one region with color value less than the color value assigned to these regions. Simple path between two regions $f$ and $h$ is a sequence of regions $r_{1},r_{2},...\ r_{t}$ such that $r_{1}=f$ , $r_{t}=h$ , for each $1<=i<t$ regions $r_{i}$ and $r_{i+1}$ share an edge, and $r_{i}=r_{j}$ if and only if $i=j$ .
Moriarty couldn't answer and asks Sherlock to solve it himself. Help Sherlock in doing so.
输入格式
First line contains two integers $n$ and $m$ ( $3<=n<=100000$ , $0<=m<=n-3$ ), the number of vertices in the polygon and the number of diagonals added.
Each of the next $m$ lines contains two integers $a$ and $b$ ( $1<=a,b<=n$ ), describing a diagonal between vertices $a$ and $b$ . It is guaranteed that the diagonals are correct, i. e. $a$ and $b$ don't coincide and are not neighboring. It is guaranteed that the diagonals do not intersect.
Each of the next $m$ lines contains two integers $a$ and $b$ ( $1<=a,b<=n$ ), describing a diagonal between vertices $a$ and $b$ . It is guaranteed that the diagonals are correct, i. e. $a$ and $b$ don't coincide and are not neighboring. It is guaranteed that the diagonals do not intersect.
输出格式
Let the number of regions be $k$ .
Output $k$ space-separated integers, each between $1$ and $20$ , representing the colors of the regions in the order of increasing importance.
If there are multiple answers, print any of them. It can be shown that at least one answer exists.
Output $k$ space-separated integers, each between $1$ and $20$ , representing the colors of the regions in the order of increasing importance.
If there are multiple answers, print any of them. It can be shown that at least one answer exists.
输入输出样例
输入 #1
4 1 1 3
输出 #1
1 2
输入 #2
6 3 1 3 1 4 1 5
输出 #2
2 1 2 3
In 2nd input, regions formed in order after sorting will be $(1,2,3)$ , $(1,3,4)$ , $(1,4,5)$ , $(1,5,6)$ , i.e, region $(1,2,3)$ is first region followed by region $(1,3,4)$ and so on.
So, we can color regions $1$ and $3$ with same color, as region number $2$ is on the path from $1$ to $3$ and it has color $1$ which is less than color of $1$ and $3$ , i.e., color number $2$ .
So, we can color regions $1$ and $3$ with same color, as region number $2$ is on the path from $1$ to $3$ and it has color $1$ which is less than color of $1$ and $3$ , i.e., color number $2$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted