Link-Cut Tree
题号:NC236072
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 512 M,其他语言1024 M
64bit IO Format: %lld

题目描述

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 n vertices and m edges, where the length of the i-th edge equals . She needs to find a simple cycle with the smallest length.
A simple cycle is a subgraph of the original graph containing k () vertices and k edges such that for all there is an edge connecting vertices a_i and 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 T indicating the number of test cases. For each test case:
The first line contains two integers n and m (, ) indicating the number of vertices and edges in the original graph.
For the following m lines, the i-th line contains two integers u_i and v_i () indicating an edge connecting vertices u_i and v_i with length . There are no self loops nor multiple edges. Note that the graph is not necessarily connected.
It's guaranteed that neither the sum of n nor the sum of m of all test cases will exceed .

输出描述:

For each test case output one line. If there are no simple cycles in the graph output "-1" (without quotes); Otherwise output k 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!
示例1

输入

复制
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 2, 4, 5 and 6 with a length of .