#P40007. 2019 ICPC NCNA Regional Contest H - On Average They're Purple
2019 ICPC NCNA Regional Contest H - On Average They're Purple
题目描述
Alice colors each edge in the graph red or blue.
A path is a sequence of edges where each pair of consecutive edges have a node in common. If the first edge in the pair is of a different color than the second edge, then that is a ``color change.''
After Alice colors the graph, Bob chooses a path that begins at node and ends at node . He can choose any path on the graph, but he wants to minimize the number of color changes in the path. Alice wants to choose an edge coloring to maximize the number of color changes Bob must make. What is the maximum number of color changes she can force Bob to make, regardless of which path he chooses?
输入格式
The first line contains two integer values and with and . The next lines contain two integers and indicating an undirected edge between nodes and (, ).
All edges in the graph are unique.
输出格式
Output the maximum number of color changes Alice can force Bob to make on his route from node to node .
样例
输入样例1
3 3
1 3
1 2
2 3
输出样例1
0
输入样例2
7 8
1 2
1 3
2 4
3 4
4 5
4 6
5 7
6 7
输出样例2
3