CF173D.Deputies
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The Trinitarian kingdom has exactly n=3k cities. All of them are located on the shores of river Trissisipi, which flows through the whole kingdom. Some of the cities are located on one side of the river, and all the rest are on the other side.
Some cities are connected by bridges built between them. Each bridge connects two cities that are located on the opposite sides of the river. Between any two cities exists no more than one bridge.
The recently inaugurated King Tristan the Third is busy distributing his deputies among cities. In total there are k deputies and the king wants to commission each of them to control exactly three cities. However, no deputy can be entrusted to manage the cities, which are connected by a bridge — the deputy can set a too high fee for travelling over the bridge to benefit his pocket, which is bad for the reputation of the king.
Help King Tristan the Third distribute the deputies between the cities, if it is possible.
输入格式
The first line contains two integers n and m — the number of cities and bridges ( 3<=n<10^{5} , n=3k , 0<=m<=105 ). Next m lines describe the bridges. The i -th line contains two integers ai and bi — the numbers of cities that are connected by the i -th bridge ( 1<=ai,bi<=n , ai=bi , 1<=i<=m ).
It is guaranteed that no bridge connects a city with itself and that any two cities are connected with no more than one bridge.
输出格式
If distributing the deputies in the required manner is impossible, print in a single line "NO" (without the quotes).
Otherwise, in the first line print "YES" (without the quotes), and in the second line print which deputy should be put in charge of each city. The i -th number should represent the number of the deputy (from 1 to k ), who should be in charge of city numbered i -th in the input — overall there should be n numbers.
If there are multiple solutions, print any of them.
输入输出样例
输入#1
6 6 1 2 4 1 3 5 6 5 2 6 4 6
输出#1
YES 1 2 1 2 2 1
输入#2
3 1 1 2
输出#2
NO