CF730K.Roads Orientation Problem
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Berland consists of n cities and m bidirectional roads connecting pairs of cities. There is no road connecting a city to itself, and between any pair of cities there is no more than one road. It is possible to reach any city from any other moving along roads.
Currently Mr. President is in the city s and his destination is the city t . He plans to move along roads from s to t ( s=t ).
That's why Ministry of Fools and Roads has difficult days. The minister is afraid that Mr. President could get into a traffic jam or get lost. Who knows what else can happen!
To be sure that everything goes as planned, the minister decided to temporarily make all roads one-way. So each road will be oriented in one of two possible directions. The following conditions must be satisfied:
- There should be no cycles along roads after orientation.
- The city s should be the only such city that all its roads are oriented out (i.e. there are no ingoing roads to the city s and the city s is the only such city).
- The city t should be the only such city that all its roads are oriented in (i.e. there are no outgoing roads from the city t and the city t is the only such city).
Help the minister solve his problem. Write a program to find any such orientation of all roads or report that no solution exists.
输入格式
Each test in this problem contains one or more test cases to solve. The first line of the input contains positive number T — the number of cases to solve.
Each case starts with a line containing four integers n , m , s and t ( 2<=n<=4⋅105 , 1<=m<=106 , 1<=s,t<=n , s=t ) — the number of cities, the number of roads and indices of departure and destination cities. The cities are numbered from 1 to n .
The following m lines contain roads, one road per line. Each road is given as two integer numbers xj , yj ( 1<=xj,yj<=n , xj=yj ), which means that the j -th road connects cities xj and yj . There is at most one road between any pair of cities. It is possible to reach any city from any other moving along roads.
The sum of values n over all cases in a test doesn't exceed 4⋅105 . The sum of values m over all cases in a test doesn't exceed 106 .
输出格式
For each case print "Yes" if the answer exists. In the following m lines print roads in the required directions. You can print roads in arbitrary order. If there are multiple answers, print any of them.
Print the only line "No" if there is no answer for a case.
输入输出样例
输入#1
2 4 4 1 2 1 2 2 3 3 4 4 1 3 2 1 3 3 1 2 3
输出#1
Yes 1 2 3 2 4 3 1 4 No