“Even” Division

아직 제출이 없습니다시간 제한4초메모리 제한1024 MB

문제

If you talk about an even division in the usual sense of the words, it means dividing a thing equally. Today, you need to think about something different. A graph is to be divided into subgraphs with their numbers of nodes being even, that is, multiples of two.

You are given an undirected connected graph with even number of nodes. The given graph is to be divided into its subgraphs so that all the subgraphs are connected and with even number of nodes, until no further such division is possible. Figure I.1 illustrates an example. The original graph of 88 nodes is divided into subgraphs with 44, 22, and 22 nodes. All of them have even numbers of nodes.

Figure I.1. Example of a division (Sample Input/Output 1)

To put it mathematically, an even division of a graph is the set of subsets V_1V\_1, \dots, V_kV\_k of the graph nodes satisfying the following conditions.

  1. V_1V_kV\_1 ∪ \cdots ∪ V\_k is the set of all the nodes of the input graph, and V_iV_j=V\_i ∩ V\_j = ∅ if iji \ne j.
  2. Each V_iV\_i is non-empty, and has an even number of elements.
  3. Each V_iV\_i induces a connected subgraph. In other words, any nodes in V_iV\_i are reachable from each other by using only the edges of the input graph connecting two nodes in V_iV\_i.
  4. There is no further division. For any U_1U_2=V_iU\_1 ∪ U\_2 = V\_i, the division obtained by replacing V_iV\_i with the two sets, U_1U\_1 and U_2U\_2, does not satisfy either of the conditions 1, 2, or 3.

Your task is to find an even division of the given graph.

입력

The input consists of a single test case of the following format.

\begin{align\*}& n \\, m \\\ & x\_1 \\, y\_1 \\\ & \vdots \\\ & x\_m \\, y\_m \end{align\*}

The first line consists of two integers nn and mm. The first integer nn (2n1052 ≤ n ≤ 10^5) is an even number representing the number of the nodes of the graph to be divided. The second integer mm (n1m105n - 1 ≤ m ≤ 10^5) is the number of the edges of the graph.

The nodes of the graph are numbered from 00 to n1n - 1.

The subsequent mm lines represent the edges of the graph. A line x_ix\_i y_iy\_i (0x_i<y_i<n0 ≤ x\_i < y\_i < n) means that there is an edge connecting the two nodes x_ix\_i and y_iy\_i. There are no duplicated edges. The input graph is guaranteed to be connected.

출력

If there exists an even division of the node set of the given graph into subsets V_1V\_1, \dots, V_kV\_k, print kk in the first line of the output. The next kk lines should describe the subsets V_1V\_1, \dots, V_kV\_k. The order of the subsets does not matter. The ii-th of them should begin with the size of V_iV\_i, followed by the node numbers of the elements of V_iV\_i, separated by a space. The order of the node numbers does not matter either.

If there are multiple even divisions, any of them are acceptable.

힌트

In the Sample 2, the singleton set of the set of the nodes of the original graph is already an even division.