CF732F.Tourist Reform
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Berland is a tourist country! At least, it can become such — the government of Berland is confident about this.
There are n cities in Berland, some pairs of which are connected by two-ways roads. Each road connects two different cities. In Berland there are no roads which connect the same pair of cities. It is possible to get from any city to any other city using given two-ways roads.
According to the reform each road will become one-way. It will be oriented to one of two directions.
To maximize the tourist attraction of Berland, after the reform for each city i the value ri will be calculated. It will equal to the number of cities x for which there is an oriented path from the city i to the city x . In other words, ri will equal the number of cities which can be reached from the city i by roads.
The government is sure that tourist's attention will be focused on the minimum value of ri .
Help the government of Berland make the reform to maximize the minimum of ri .
输入格式
The first line contains two integers n,m ( 2<=n<=400000,1<=m<=400000 ) — the number of cities and the number of roads.
The next m lines describe roads in Berland: the j -th of them contains two integers uj and vj ( 1<=uj,vj<=n , uj=vj ), where uj and vj are the numbers of cities which are connected by the j -th road.
The cities are numbered from 1 to n . It is guaranteed that it is possible to get from any city to any other by following two-ways roads. In Berland there are no roads which connect the same pair of cities.
输出格式
In the first line print single integer — the maximum possible value min1<=i<=nri after the orientation of roads.
The next m lines must contain the description of roads after the orientation: the j -th of them must contain two integers uj,vj , it means that the j -th road will be directed from the city uj to the city vj . Print roads in the same order as they are given in the input data.
输入输出样例
输入#1
7 9 4 3 2 6 7 1 4 1 7 3 3 5 7 4 6 5 2 5
输出#1
4 4 3 6 2 7 1 1 4 3 7 5 3 7 4 5 6 2 5