CF1927F.Microcycle
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Given an undirected weighted graph with n vertices and m edges. There is at most one edge between each pair of vertices in the graph, and the graph does not contain loops (edges from a vertex to itself). The graph is not necessarily connected.
A cycle in the graph is called simple if it doesn't pass through the same vertex twice and doesn't contain the same edge twice.
Find any simple cycle in this graph in which the weight of the lightest edge is minimal.
输入格式
The first line of the input contains a single integer t ( 1≤t≤104 ) — the number of test cases. Then follow the descriptions of the test cases.
The first line of each test case contains two integers n and m ( 3≤n≤m≤min(2n⋅(n−1),2⋅105) ) — the size of the graph and the number of edges.
The next m lines of the test case contain three integers u , v , and w ( 1≤u,v≤n , u=v , 1≤w≤106 ) — vertices u and v are connected by an edge of weight w .
It is guaranteed that there is at most one edge between each pair of vertices. Note that under the given constraints, there is always at least one simple cycle in the graph.
It is guaranteed that the sum of the values of m for all test cases does not exceed 2⋅105 .
输出格式
For each test case, output a pair of numbers b and k , where:
- b — the minimum weight of the edge in the found cycle,
- k — the number of vertices in the found cycle.
On the next line, output k numbers from 1 to n — the vertices of the cycle in traversal order.
Note that the answer always exists, as under the given constraints, there is always at least one simple cycle in the graph.
输入输出样例
输入#1
5 6 6 1 2 1 2 3 1 3 1 1 4 5 1 5 6 1 6 4 1 6 6 1 2 10 2 3 8 3 1 5 4 5 100 5 6 40 6 4 3 6 15 1 2 4 5 2 8 6 1 7 6 3 10 6 5 1 3 2 8 4 3 4 5 3 6 2 6 6 5 4 5 4 1 3 6 4 5 4 2 1 3 1 7 1 5 5 4 6 2 3 2 1 3 10 1 4 1 3 4 7 2 4 5 1 2 2 4 5 2 1 10 3 1 3 4 2 6 1 4 7 2 3 3
输出#1
1 3 1 2 3 3 3 6 4 5 1 5 4 2 1 6 3 1 4 1 4 3 2 3 3 2 3 1