A10925 | Labelling Cities
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Oleg the bank client lives in Bankopolia. There are $n$ cities in Bankopolia and some pair of cities are connected directly by bi-directional roads. The cities are numbered from $1$ to $n$ . There are a total of $m$ roads in Bankopolia, the $i$ -th road connects cities $u_{i}$ and $v_{i}$ . It is guaranteed that from each city it is possible to travel to any other city using some of the roads.
Oleg wants to give a label to each city. Suppose the label of city $i$ is equal to $x_{i}$ . Then, it must hold that for all pairs of cities $(u,v)$ the condition $|x_{u}-x_{v}|<=1$ holds if and only if there is a road connecting $u$ and $v$ .
Oleg wonders if such a labeling is possible. Find an example of such labeling if the task is possible and state that it is impossible otherwise.
Oleg wants to give a label to each city. Suppose the label of city $i$ is equal to $x_{i}$ . Then, it must hold that for all pairs of cities $(u,v)$ the condition $|x_{u}-x_{v}|<=1$ holds if and only if there is a road connecting $u$ and $v$ .
Oleg wonders if such a labeling is possible. Find an example of such labeling if the task is possible and state that it is impossible otherwise.
输入格式
The first line of input contains two space-separated integers $n$ and $m$ ( $2<=n<=3·10^{5}$ , $1<=m<=3·10^{5}$ ) — the number of cities and the number of roads.
Next, $m$ lines follow. The $i$ -th line contains two space-separated integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n$ , $u_{i}≠v_{i}$ ) — the cities connected by the $i$ -th road. It is guaranteed that there is at most one road between each pair of cities and it is possible to travel from any city to any other city using some roads.
Next, $m$ lines follow. The $i$ -th line contains two space-separated integers $u_{i}$ and $v_{i}$ ( $1<=u_{i},v_{i}<=n$ , $u_{i}≠v_{i}$ ) — the cities connected by the $i$ -th road. It is guaranteed that there is at most one road between each pair of cities and it is possible to travel from any city to any other city using some roads.
输出格式
If the required labeling is not possible, output a single line containing the string "NO" (without quotes).
Otherwise, output the string "YES" (without quotes) on the first line. On the next line, output $n$ space-separated integers, $x_{1},x_{2},...,x_{n}$ . The condition $1<=x_{i}<=10^{9}$ must hold for all $i$ , and for all pairs of cities $(u,v)$ the condition $|x_{u}-x_{v}|<=1$ must hold if and only if there is a road connecting $u$ and $v$ .
Otherwise, output the string "YES" (without quotes) on the first line. On the next line, output $n$ space-separated integers, $x_{1},x_{2},...,x_{n}$ . The condition $1<=x_{i}<=10^{9}$ must hold for all $i$ , and for all pairs of cities $(u,v)$ the condition $|x_{u}-x_{v}|<=1$ must hold if and only if there is a road connecting $u$ and $v$ .
输入输出样例
输入 #1
4 4 1 2 1 3 1 4 3 4
输出 #1
YES 2 3 1 1
输入 #2
5 10 1 2 1 3 1 4 1 5 2 3 2 4 2 5 3 4 3 5 5 4
输出 #2
YES 1 1 1 1 1
输入 #3
4 3 1 2 1 3 1 4
输出 #3
NO
For the first sample, $x_{1}=2$ , $x_{2}=3$ , $x_{3}=x_{4}=1$ is a valid labeling. Indeed, $(3,4)$ , $(1,2)$ , $(1,3)$ , $(1,4)$ are the only pairs of cities with difference of labels not greater than $1$ , and these are precisely the roads of Bankopolia.
For the second sample, all pairs of cities have difference of labels not greater than $1$ and all pairs of cities have a road connecting them.
For the last sample, it is impossible to construct a labeling satisfying the given constraints.
For the second sample, all pairs of cities have difference of labels not greater than $1$ and all pairs of cities have a road connecting them.
For the last sample, it is impossible to construct a labeling satisfying the given constraints.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted