CF1543E.The Final Pursuit

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Finally, you have defeated Razor and now, you are the Most Wanted street racer. Sergeant Cross has sent the full police force after you in a deadly pursuit. Fortunately, you have found a hiding spot but you fear that Cross and his force will eventually find you. To increase your chances of survival, you want to tune and repaint your BMW M3 GTR.

The car can be imagined as a permuted nn -dimensional hypercube. A simple nn -dimensional hypercube is an undirected unweighted graph built recursively as follows:

  • Take two simple (n1)(n-1) -dimensional hypercubes one having vertices numbered from 00 to 2n112^{n-1}-1 and the other having vertices numbered from 2n12^{n-1} to 2n12^{n}-1 . A simple 00 -dimensional Hypercube is just a single vertex.
  • Add an edge between the vertices ii and i+2n1i+2^{n-1} for each 0i<2n10\leq i < 2^{n-1} .

A permuted nn -dimensional hypercube is formed by permuting the vertex numbers of a simple nn -dimensional hypercube in any arbitrary manner.

Examples of a simple and permuted 33 -dimensional hypercubes are given below:

Note that a permuted nn -dimensional hypercube has the following properties:

  • There are exactly 2n2^n vertices.
  • There are exactly n2n1n\cdot 2^{n-1} edges.
  • Each vertex is connected to exactly nn other vertices.
  • There are no self-loops or duplicate edges.

Let's denote the permutation used to generate the permuted nn -dimensional hypercube, representing your car, from a simple nn -dimensional hypercube by PP . Before messing up the functionalities of the car, you want to find this permutation so that you can restore the car if anything goes wrong. But the job isn't done yet.

You have nn different colours numbered from 00 to n1n-1 . You want to colour the vertices of this permuted nn -dimensional hypercube in such a way that for each and every vertex uu satisfying 0u<2n0\leq u < 2^n and for each and every colour cc satisfying 0c<n0\leq c < n , there is at least one vertex vv adjacent to uu having a colour cc . In other words, from each and every vertex, it must be possible to reach a vertex of any colour by just moving to an adjacent vertex.

Given the permuted nn -dimensional hypercube, find any valid permutation PP and colouring.

输入格式

The first line of input contains a single integer tt ( 1t40961\leq t\leq 4096 ) — the number of test cases.

For each test case, the first line contains a single integer nn ( 1n161\leq n\leq 16 ).

Each of the next n2n1n\cdot 2^{n-1} lines contain two integers uu and vv ( 0u,v<2n0\leq u, v < 2^n ) denoting that there is an edge between the vertices numbered uu and vv .

It is guaranteed that the graph described in the input is a permuted nn -dimensional hypercube.

Additionally, it is guaranteed that the sum of 2n2^n over all test cases does not exceed 216=655362^{16}=65\,536 .

输出格式

For each test case, print two lines.

In the first line, output any permutation PP of length 2n2^n that can be used to transform a simple nn -dimensional hypercube to the permuted nn -dimensional hypercube given in the input. Two permuted hypercubes are considered the same if they have the same set of edges. If there are multiple answers, output any of them.

In the second line, print the colouring. If there is no way to colour the vertices satisfying the conditions, output 1-1 . Otherwise, output a single line containing 2n2^n space separated integers. The ii -th integer must be the colour of the vertex numbered (i1)(i-1) in the permuted nn -dimensional hypercube. If there are multiple answers, output any of them.

输入输出样例

  • 输入#1

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

    输出#1

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

说明/提示

The colouring and the permuted hypercube for the first test case is shown below:

The colouring and the permuted hypercube for the second test case is shown below:

The permuted hypercube for the third test case is given in the problem statement. However, it can be shown that there exists no way to colour that cube satifying all the conditions. Note that some other permutations like [0,5,7,3,1,2,4,6][0, 5, 7, 3, 1, 2, 4, 6] and [0,1,5,2,7,4,3,6][0, 1, 5, 2, 7, 4, 3, 6] will also give the same permuted hypercube.

首页