CF405E.Graph Cutting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Little Chris is participating in a graph cutting contest. He's a pro. The time has come to test his skills to the fullest.

Chris is given a simple undirected connected graph with nn vertices (numbered from 1 to nn ) and mm edges. The problem is to cut it into edge-distinct paths of length 2. Formally, Chris has to partition all edges of the graph into pairs in such a way that the edges in a single pair are adjacent and each edge must be contained in exactly one pair.

For example, the figure shows a way Chris can cut a graph. The first sample test contains the description of this graph.

You are given a chance to compete with Chris. Find a way to cut the given graph or determine that it is impossible!

输入格式

The first line of input contains two space-separated integers nn and mm ( 1<=n,m<=1051<=n,m<=10^{5} ), the number of vertices and the number of edges in the graph. The next mm lines contain the description of the graph's edges. The ii -th line contains two space-separated integers aia_{i} and bib_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n ; aibia_{i}≠b_{i} ), the numbers of the vertices connected by the ii -th edge. It is guaranteed that the given graph is simple (without self-loops and multi-edges) and connected.

Note: since the size of the input and output could be very large, don't use slow output techniques in your language. For example, do not use input and output streams (cin, cout) in C++.

输出格式

If it is possible to cut the given graph into edge-distinct paths of length 2, output lines. In the ii -th line print three space-separated integers xix_{i} , yiy_{i} and ziz_{i} , the description of the ii -th path. The graph should contain this path, i.e., the graph should contain edges (xi,yi)(x_{i},y_{i}) and (yi,zi)(y_{i},z_{i}) . Each edge should appear in exactly one path of length 2. If there are multiple solutions, output any of them.

If it is impossible to cut the given graph, print "No solution" (without quotes).

输入输出样例

  • 输入#1

    8 12
    1 2
    2 3
    3 4
    4 1
    1 3
    2 4
    3 5
    3 6
    5 6
    6 7
    6 8
    7 8
    

    输出#1

    1 2 4
    1 3 2
    1 4 3
    5 3 6
    5 6 8
    6 7 8
  • 输入#2

    3 3
    1 2
    2 3
    3 1
    

    输出#2

    No solution
    
  • 输入#3

    3 2
    1 2
    2 3
    

    输出#3

    1 2 3
    
首页