CF960F.Pathwalks

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a directed graph with nn nodes and mm edges, with all edges having a certain weight.

There might be multiple edges and self loops, and the graph can also be disconnected.

You need to choose a path (possibly passing through same vertices multiple times) in the graph such that the weights of the edges are in strictly increasing order, and these edges come in the order of input. Among all such paths, you need to find the the path that has the maximum possible number of edges, and report this value.

Please note that the edges picked don't have to be consecutive in the input.

输入格式

The first line contains two integers nn and mm ( 1<=n<=1000001<=n<=100000 , 1<=m<=1000001<=m<=100000 ) — the number of vertices and edges in the graph, respectively.

mm lines follows.

The ii -th of these lines contains three space separated integers aia_{i} , bib_{i} and wiw_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n , 0<=wi<=1000000<=w_{i}<=100000 ), denoting an edge from vertex aia_{i} to vertex bib_{i} having weight wiw_{i}

输出格式

Print one integer in a single line — the maximum number of edges in the path.

输入输出样例

  • 输入#1

    3 3
    3 1 3
    1 2 1
    2 3 2
    

    输出#1

    2
  • 输入#2

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

    输出#2

    3

说明/提示

The answer for the first sample input is 22 : . Note that you cannot traverse because edge appears earlier in the input than the other two edges and hence cannot be picked/traversed after either of the other two edges.

In the second sample, it's optimal to pick 11 -st, 33 -rd and 55 -th edges to get the optimal answer: .

首页