3464. Connections

单点时限: 3.0 sec

内存限制: 512 MB

Hard times are coming to Byteland. Quantum computing is becoming mainstream and Qubitland is going to occupy Byteland. The main problem is that Byteland does not have enough money for this war, so the King of Byteland Byteman 0x0B had decided to reform its road system to reduce expenses.

Byteland has $n$ cities that are connected by $m$ one-way roads and it is possible to get from any city to any other city using these roads. No two roads intersect outside of the cities and no other roads exist. By the way, roads are one-way because every road has a halfway barrier that may be passed in one direction only. These barriers are intended to force enemies to waste their time if they choose the wrong way.

The idea of the upcoming road reform is to abandon some roads so that exactly $2n$ roads remain. Advisers of the King think that it should be enough to keep the ability to get from any city to any other city. (Maybe even less is enough? They do not know for sure.) The problem is how to choose roads to abandon. Everyone in Byteland knows that you are the only one who can solve this problem.

输入格式

Input consists of several test cases. The first line of the input contains the number of tests cases.

The first line of each test case contains $n$ and $m$: the number of cities and the number of roads correspondingly ($n \ge 4$, $m > 2n$).

Each of the next $m$ lines contains two numbers $x_i$ and $y_i$ denoting a road from city $x_i$ to city $y_i$ ($1 \le x_i, y_i \le n$, $x_i \ne y_i$). It is guaranteed that it is possible to get from any city to any other city using existing roads only. For each pair $(x, y)$ of cities there is at most one road going from city~$x$ to city~$y$ and at most one road going from city~$y$ to city~$x$. The solution is guaranteed to exist.

The sum of $m$ over all test cases in a single input does not exceed $100\,000$.

输出格式

For each test case output $m - 2n$ lines.

Each line describes a road that should be abandoned. Print the road in the same format as in the input: the number of the source city and the number of the destination city.

The order of roads in the output does not matter, but each road from the input may appear in the output at most once and each road in the output must have been in the input. It still must be possible to get from any city to any other city using the remaining roads.

样例

Input
1
4 9
1 2
1 3
2 3
2 4
3 2
3 4
4 1
4 2
4 3
Output
1 3

36 人解决,38 人已尝试。

46 份提交通过,共有 98 份提交。

3.3 EMB 奖励。

创建: 6 年,4 月前.

修改: 6 年,3 月前.

最后提交: 2 年,1 月前.

来源: NEERC 2017

题目标签