CF1361E.James and the Chase
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
James Bond has a new plan for catching his enemy. There are some cities and directed roads between them, such that it is possible to travel between any two cities using these roads. When the enemy appears in some city, Bond knows her next destination but has no idea which path she will choose to move there.
The city a is called interesting, if for each city b , there is exactly one simple path from a to b . By a simple path, we understand a sequence of distinct cities, such that for every two neighboring cities, there exists a directed road from the first to the second city.
Bond's enemy is the mistress of escapes, so only the chase started in an interesting city gives the possibility of catching her. James wants to arrange his people in such cities. However, if there are not enough interesting cities, the whole action doesn't make sense since Bond's people may wait too long for the enemy.
You are responsible for finding all the interesting cities or saying that there is not enough of them. By not enough, James means strictly less than 20% of all cities.
输入格式
The first line contains one integer t ( 1≤t≤2000 ) — the number of test cases. Each test case is described as follows:
The first line contains two integers n and m ( 1≤n≤105 , 0≤m≤2⋅105 ) — the number of cities and roads between them. Each of the following m lines contains two integers u , v ( u=v ; 1≤u,v≤n ), which denote that there is a directed road from u to v .
You can assume that between each ordered pair of cities there is at most one road. The sum of n over all test cases doesn't exceed 105 , and the sum of m doesn't exceed 2⋅105 .
输出格式
If strictly less than 20% of all cities are interesting, print −1 . Otherwise, let k be the number of interesting cities. Print k distinct integers in increasing order — the indices of interesting cities.
输入输出样例
输入#1
4 3 3 1 2 2 3 3 1 3 6 1 2 2 1 2 3 3 2 1 3 3 1 7 10 1 2 2 3 3 1 1 4 4 5 5 1 4 6 6 7 7 4 6 1 6 8 1 2 2 3 3 4 4 5 5 6 6 1 6 2 5 1
输出#1
1 2 3 -1 1 2 3 5 -1
说明/提示
In all drawings, if a city is colored green, then it is interesting; otherwise, it is colored red.
In the first sample, each city is interesting.
In the second sample, no city is interesting.
In the third sample, cities 1 , 2 , 3 and 5 are interesting.
In the last sample, only the city 1 is interesting. It is strictly less than 20% of all cities, so the answer is −1 .