CF1176E.Cover it!
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an undirected unweighted connected graph consisting of n vertices and m edges. It is guaranteed that there are no self-loops or multiple edges in the given graph.
Your task is to choose at most ⌊2n⌋ vertices in this graph so each unchosen vertex is adjacent (in other words, connected by an edge) to at least one of chosen vertices.
It is guaranteed that the answer exists. If there are multiple answers, you can print any.
You will be given multiple independent queries to answer.
输入格式
The first line contains a single integer t ( 1≤t≤2⋅105 ) — the number of queries.
Then t queries follow.
The first line of each query contains two integers n and m ( 2≤n≤2⋅105 , n−1≤m≤min(2⋅105,2n(n−1)) ) — the number of vertices and the number of edges, respectively.
The following m lines denote edges: edge i is represented by a pair of integers vi , ui ( 1≤vi,ui≤n , ui=vi ), which are the indices of vertices connected by the edge.
There are no self-loops or multiple edges in the given graph, i. e. for each pair ( vi,ui ) there are no other pairs ( vi,ui ) or ( ui,vi ) in the list of edges, and for each pair ( vi,ui ) the condition vi=ui is satisfied. It is guaranteed that the given graph is connected.
It is guaranteed that ∑m≤2⋅105 over all queries.
输出格式
For each query print two lines.
In the first line print k ( 1≤⌊2n⌋ ) — the number of chosen vertices.
In the second line print k distinct integers c1,c2,…,ck in any order, where ci is the index of the i -th chosen vertex.
It is guaranteed that the answer exists. If there are multiple answers, you can print any.
输入输出样例
输入#1
2 4 6 1 2 1 3 1 4 2 3 2 4 3 4 6 8 2 5 5 4 4 3 4 1 1 3 2 3 2 6 5 6
输出#1
2 1 3 3 4 3 6
说明/提示
In the first query any vertex or any pair of vertices will suffice.
Note that you don't have to minimize the number of chosen vertices. In the second query two vertices can be enough (vertices 2 and 4 ) but three is also ok.