#P3568. 「COCI 2021.11」超方形

「COCI 2021.11」超方形

Description

Problem from COCI 2021/2022 Contest #2 T3 Hypercube

...it’s dark in the cube, it’s dark in the cube...

Five in the morning. Daniel wakes up, he opens his eyes. His head hurts a bit. He can still hear the ringing in his ears.

He comes to realize that he has found himself at a playground, in a big metal box.

...I was in the cube, I was in the cube...

He remembers a similar situation he found himself in, three years ago, COCI round 2, task Kocka.

...I’m in the cube again, I’m in the cube again...

But this time, things are much more complicated... Daniel is in an nn-dimensional hypercube Qn\mathcal{Q}_n. 2n12^{n−1} identical copies of a tree T\mathcal T with nn edges are scattered around him. It soon became clear to him that salvation lies in tiling the edges of the hypercube with the trees. Formally, a hypercube Qn\mathcal{Q}_n is a graph with nodes 0,1,2n10, 1, \ldots 2 ^{n − 1}, in which nodes xx and yy are connected if and only if their bitwise xor is a power of two.

A tree can be placed on the hypercube so that:

  • Each node of the tree corresponds to some node of the hypercube
  • Those nodes have to be distinct
  • If there is an edge between two nodes in the tree, then there has to be an edge between the corresponding nodes in the hypercube.

A tiling of the hypercube is done by placing several trees so that each edge of the hypercube belongs to at most one tree.

Your task is to tile the hypercube Qn\mathcal Q_n with as many copies of the given tree T\mathcal T , which has nn edges.

Input

The first line contains a positive integer nn (1n16)(1 \le n \le 16), the dimension of the hypercube.

Each of the following nn lines contains two integers xx and yy (0x,yn,xy)(0 \le x, y \le n, x \neq y) which denote that the nodes xx and yy are connected by an edge in tree T\mathcal T .

Output

In the first line print the number of trees in your tiling.

Each of the following lines should describe a placement of a single copy of the tree T\mathcal T.

In the ii-th line print n+1n + 1 numbers a0(i),a1(i),,an(i)a_0^{(i)},a_1^{(i)},\ldots,a_n^{(i)}. These numbers denote that the i-th tree is placed so that the hypercube node aj(i)a^{(i)}_j corresponds to the tree node jj, for all j=0,,nj = 0, \ldots , n.

1
0 1

1
0 1

2
0 1
1 2

2
0 1 3
0 2 3

3
0 1
0 2
0 3

4
0 1 2 4
3 1 2 7
5 1 4 7
6 2 4 7

Scoring

If your solution correctly places kk trees, you will receive f(k)110f(k) \cdot 110 points for that test case, where

$$f(k)= \begin{cases} \begin{aligned} 0.7\cdot\frac{k}{2^{n-1}}~&(k<2^{n-1})\\ 1~&(k=2^{n-1}) \end{aligned} \end{cases} $$

Of course, if your solution is not correct, you will receive 00 points.

Your total number of points is equal to the minimum number of points your solution receives over all of the test cases. It is possible to prove that there always exists a solution which uses all of the 2n12^{n−1} trees