CF1228D.Complete Tripartite

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have a simple undirected graph consisting of nn vertices and mm edges. The graph doesn't contain self-loops, there is at most one edge between a pair of vertices. The given graph can be disconnected.

Let's make a definition.

Let v1v_1 and v2v_2 be two some nonempty subsets of vertices that do not intersect. Let f(v1,v2)f(v_{1}, v_{2}) be true if and only if all the conditions are satisfied:

  1. There are no edges with both endpoints in vertex set v1v_1 .
  2. There are no edges with both endpoints in vertex set v2v_2 .
  3. For every two vertices xx and yy such that xx is in v1v_1 and yy is in v2v_2 , there is an edge between xx and yy .

Create three vertex sets ( v1v_{1} , v2v_{2} , v3v_{3} ) which satisfy the conditions below;

  1. All vertex sets should not be empty.
  2. Each vertex should be assigned to only one vertex set.
  3. f(v1,v2)f(v_{1}, v_{2}) , f(v2,v3)f(v_{2}, v_{3}) , f(v3,v1)f(v_{3}, v_{1}) are all true.

Is it possible to create such three vertex sets? If it's possible, print matching vertex set for each vertex.

输入格式

The first line contains two integers nn and mm ( 3n1053 \le n \le 10^{5} , 0mmin(3105,n(n1)2)0 \le m \le \text{min}(3 \cdot 10^{5}, \frac{n(n-1)}{2}) ) — the number of vertices and edges in the graph.

The ii -th of the next mm lines contains two integers aia_{i} and bib_{i} ( 1ai<bin1 \le a_{i} \lt b_{i} \le n ) — it means there is an edge between aia_{i} and bib_{i} . The graph doesn't contain self-loops, there is at most one edge between a pair of vertices. The given graph can be disconnected.

输出格式

If the answer exists, print nn integers. ii -th integer means the vertex set number (from 11 to 33 ) of ii -th vertex. Otherwise, print 1-1 .

If there are multiple answers, print any.

输入输出样例

  • 输入#1

    6 11
    1 2
    1 3
    1 4
    1 5
    1 6
    2 4
    2 5
    2 6
    3 4
    3 5
    3 6
    

    输出#1

    1 2 2 3 3 3 
  • 输入#2

    4 6
    1 2
    1 3
    1 4
    2 3
    2 4
    3 4
    

    输出#2

    -1
    

说明/提示

In the first example, if v1={1}v_{1} = \{ 1 \} , v2={2,3}v_{2} = \{ 2, 3 \} , and v3={4,5,6}v_{3} = \{ 4, 5, 6 \} then vertex sets will satisfy all conditions. But you can assign vertices to vertex sets in a different way; Other answers like "2 3 3 1 1 1" will be accepted as well.

In the second example, it's impossible to make such vertex sets.

首页