On Average They're Purple

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Alice and Bob are playing a game on a simple connected graph with NN nodes and MM edges.

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 11 and ends at node NN. 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 NN and MM with 2N100,0002 \le N \le 100\\,000 and 1M100,0001 \le M \le 100\\,000. The next MM lines contain two integers a_ia\_i and b_ib\_i indicating an undirected edge between nodes a_ia\_i and b_ib\_i (1a_i,b_iN1 \le a\_i, b\_i \le N, a_ib_ia\_i \not= b\_i).

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 11 to node NN.