Canadian Computing Competition: 2001 Stage 1, Junior #5, Senior #3
The Enemy relies heavily on the transportation of supplies and personnel between the specific points A and B. Points A and B, as well as other points C, D, E, etc. are linked by a network of roads. Your mission, should you accept it, is to identify a single road that may be bombed in order to cut off all traffic between A and B.
In the input, each point is identified by a single upper-case letter (there is a maximum of 26). Each line of input identifies a pair of points connected by a road. The end of input is indicated by a line containing **
. All roads are two-way, that is, road AC is the same as road CA. There is at most one road between any pair of points.
Your output should identify all roads such that bombing any one of them would halt all traffic between A and B. Your output should list the roads, one per line, followed by a line stating that There are n disconnecting roads.
, where is the number of such roads. If there is no such road, output
There are 0 disconnecting roads.
.
Sample Input
AC
AD
AE
CE
CF
ED
GF
BG
HB
GH
**
Sample Output
CF
GF
There are 2 disconnecting roads.
Comments
there should be a new line after "There are n disconnecting roads." or it will WA.