#P9666. [ICPC2021 Macao R] Link-Cut Tree

[ICPC2021 Macao R] Link-Cut Tree

题目描述

BaoBao just learned how to use a data structure called link-cut tree to find cycles in a graph and decided to give it a try. BaoBao is given an undirected graph with nn vertices and mm edges, where the length of the ii-th edge equals 2i2^i. She needs to find a simple cycle with the smallest length.

A simple cycle is a subgraph of the original graph containing kk (3kn3 \le k \le n) vertices a1,a2,,aka_1, a_2, \cdots, a_k and kk edges such that for all 1ik1 \le i \le k there is an edge connecting vertices aia_i and a(imodk)+1a_{(i \mod k) + 1} in the subgraph. The length of a simple cycle is the total length of the edges in the cycle.

输入格式

There are multiple test cases. The first line of the input contains an integer TT indicating the number of test cases. For each test case:

The first line contains two integers nn and mm (3n1053 \le n \le 10^5, 1m1051 \le m \le 10^5) indicating the number of vertices and edges in the original graph.

For the following mm lines, the ii-th line contains two integers uiu_i and viv_i (1ui,vin1 \le u_i, v_i \le n) indicating an edge connecting vertices uiu_i and viv_i with length 2i2^i. There are no self loops nor multiple edges. Note that the graph is not necessarily connected.

It's guaranteed that neither the sum of nn nor the sum of mm of all test cases will exceed 10610^6.

输出格式

For each test case output one line. If there are no simple cycles in the graph output -1 (without quotes); Otherwise output kk integers separated by a space in increasing order indicating the indices of the edges in the simple cycle with the smallest length. It can be shown that there is at most one answer.

Please, DO NOT output extra spaces at the end of each line, or your solution may be considered incorrect!

2
6 8
1 2
2 3
5 6
3 4
2 5
5 4
5 1
4 2
4 2
1 2
4 3
2 4 5 6
-1

提示

The first sample test case is shown below. The integers beside the edges are their indices (outside the parentheses) and lengths (inside the parentheses). The simple cycle with the smallest length consists of edges 22, 44, 55 and 66 with a length of 22+24+25+26=1162^2 + 2^4 + 2^5 + 2^6 = 116.