CF459E.Pashmak and Graph

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Pashmak's homework is a problem about graphs. Although he always tries to do his homework completely, he can't solve this problem. As you know, he's really weak at graph theory; so try to help him in solving the problem.

You are given a weighted directed graph with nn vertices and mm edges. You need to find a path (perhaps, non-simple) with maximum number of edges, such that the weights of the edges increase along the path. In other words, each edge of the path must have strictly greater weight than the previous edge in the path.

Help Pashmak, print the number of edges in the required path.

输入格式

The first line contains two integers nn , mm (2<=n<=3105; 1<=m<=min(n(n1),3105))(2<=n<=3·10^{5}; 1<=m<=min(n·(n-1),3·10^{5})) . Then, mm lines follows. The ii -th line contains three space separated integers: uiu_{i} , viv_{i} , wiw_{i} (1<=ui,vi<=n; 1<=wi<=105)(1<=u_{i},v_{i}<=n; 1<=w_{i}<=10^{5}) which indicates that there's a directed edge with weight wiw_{i} from vertex uiu_{i} to vertex viv_{i} .

It's guaranteed that the graph doesn't contain self-loops and multiple edges.

输出格式

Print a single integer — the answer to the problem.

输入输出样例

  • 输入#1

    3 3
    1 2 1
    2 3 1
    3 1 1
    

    输出#1

    1
    
  • 输入#2

    3 3
    1 2 1
    2 3 2
    3 1 3
    

    输出#2

    3
    
  • 输入#3

    6 7
    1 2 1
    3 2 5
    2 4 2
    2 5 2
    2 6 9
    5 4 3
    4 3 4
    

    输出#3

    6
    

说明/提示

In the first sample the maximum trail can be any of this trails: .

In the second sample the maximum trail is .

In the third sample the maximum trail is .

首页