CF118E.Bertown roads

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Bertown has nn junctions and mm bidirectional roads. We know that one can get from any junction to any other one by the existing roads.

As there were more and more cars in the city, traffic jams started to pose real problems. To deal with them the government decided to make the traffic one-directional on all the roads, thus easing down the traffic. Your task is to determine whether there is a way to make the traffic one-directional so that there still is the possibility to get from any junction to any other one. If the answer is positive, you should also find one of the possible ways to orient the roads.

输入格式

The first line contains two space-separated integers nn and mm ( 2<=n<=105,n1<=m<=31052<=n<=10^{5},n-1<=m<=3·10^{5} ) which represent the number of junctions and the roads in the town correspondingly. Then follow mm lines, each containing two numbers which describe the roads in the city. Each road is determined by two integers aia_{i} and bib_{i} ( 1<=ai,bi<=n,aibi1<=a_{i},b_{i}<=n,a_{i}≠b_{i} ) — the numbers of junctions it connects.

It is guaranteed that one can get from any junction to any other one along the existing bidirectional roads. Each road connects different junctions, there is no more than one road between each pair of junctions.

输出格式

If there's no solution, print the single number 00 . Otherwise, print mm lines each containing two integers pip_{i} and qiq_{i} — each road's orientation. That is the traffic flow will move along a one-directional road from junction pip_{i} to junction qiq_{i} . You can print the roads in any order. If there are several solutions to that problem, print any of them.

输入输出样例

  • 输入#1

    6 8
    1 2
    2 3
    1 3
    4 5
    4 6
    5 6
    2 4
    3 5
    

    输出#1

    1 2
    2 3
    3 1
    4 5
    5 6
    6 4
    4 2
    3 5
    
  • 输入#2

    6 7
    1 2
    2 3
    1 3
    4 5
    4 6
    5 6
    2 4
    

    输出#2

    0
    
首页