#DPG. Longest Path

Longest Path

Score : 100100 points

Problem Statement

There is a directed graph GG with NN vertices and MM edges. The vertices are numbered 1,2,,N1, 2, \ldots, N, and for each ii (1iM1 \leq i \leq M), the ii-th directed edge goes from Vertex xix_i to yiy_i. GG does not contain directed cycles.

Find the length of the longest directed path in GG. Here, the length of a directed path is the number of edges in it.

Constraints

  • All values in input are integers.
  • 2N1052 \leq N \leq 10^5
  • 1M1051 \leq M \leq 10^5
  • 1xi,yiN1 \leq x_i, y_i \leq N
  • All pairs (xi,yi)(x_i, y_i) are distinct.
  • GG does not contain directed cycles.

Input

Input is given from Standard Input in the following format:

NN MM

x1x_1 y1y_1

x2x_2 y2y_2

::

xMx_M yMy_M

Output

Print the length of the longest directed path in GG.

4 5
1 2
1 3
3 2
2 4
3 4
3

The red directed path in the following figure is the longest:

6 3
2 3
4 5
5 6
2

The red directed path in the following figure is the longest:

5 8
5 3
2 3
2 4
5 2
5 1
1 4
4 3
1 3
3

The red directed path in the following figure is one of the longest: