시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB52363179.487%

문제

Alice and Bob are playing a game on a simple connected graph with $N$ nodes and $M$ 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 $1$ and ends at node $N$. 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 $N$ and $M$ with $2 \le N \le 100\,000$ and $1 \le M \le 100\,000$. The next $M$ lines contain two integers $a_i$ and $b_i$ indicating an undirected edge between nodes $a_i$ and $b_i$ ($1 \le a_i, b_i \le N$, $a_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 $1$ to node $N$.

예제 입력 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