zoukankan      html  css  js  c++  java
  • CodeForces

    E. Pashmak and Graph
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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 n vertices and m 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.

    Input

    The first line contains two integers nm (2 ≤ n ≤ 3·105; 1 ≤ m ≤ min(n·(n - 1), 3·105)). Then, m lines follows. The i-th line contains three space separated integers: uiviwi (1 ≤ ui, vi ≤ n; 1 ≤ wi ≤ 105) which indicates that there's a directed edge with weight wi from vertex ui to vertex vi.

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

    Output

    Print a single integer — the answer to the problem.

    Examples
    input
    3 3
    1 2 1
    2 3 1
    3 1 1
    output
    1
    input
    3 3
    1 2 1
    2 3 2
    3 1 3
    output
    3
    input
    6 7
    1 2 1
    3 2 5
    2 4 2
    2 5 2
    2 6 9
    5 4 3
    4 3 4
    output
    6
    Note

    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 .

    /*
    显而易见的贪心——小的边排前面……所以,先按照边长排序,然后dp,以当前边的尾节点为路径的结尾,然后一个边的首段点为u,尾端点为v,
    裸地转移就是dp[v]=max(dp[v],dp[u]+1)
    注意边相等要单独处理,然后就AC了……
    */
    #include<cstdio>
    #include<algorithm>
    #include<iostream>
    using namespace std;
    const int N=3e5+5;
    struct edge{int x,y,z;}e[N<<1];
    int n,m;int f[N],g[N];
    bool operator <(const edge &a,const edge &b){
        return a.z<b.z;
    }
    int main(){
        scanf("%d%d",&n,&m);
        for(int i=1;i<=m;i++) scanf("%d%d%d",&e[i].x,&e[i].y,&e[i].z);
        sort(e+1,e+m+1);
        for(int j,i=1;i<=m;i++){
            for(j=i;e[j].z==e[i].z;j++) g[e[j].y]=max(g[e[j].y],f[e[j].x]+1);
            for(j=i;e[j].z==e[i].z;j++) f[e[j].y]=g[e[j].y];
            i=j-1;
        }
        printf("%d
    ",*max_element(f+1,f+n+1));
        return 0;
    } 
  • 相关阅读:
    ensp抓包只有蓝色的点闪烁没有跳出wireshark
    QuartusII 13.1编译通过,波形仿真报错Error: near "/": syntax error, unexpected '/', expecting ')'
    安装Multisim时出现No software will be installed or removed无法安装
    JavaScript实现页面实时显示时间
    css图片覆盖文字 点击显示文字
    php魔术方法——属性重载方法
    php魔术方法——构造函数和析构函数
    将含有父ID的列表转成树
    分割gbk中文出现乱码的问题解决
    json_encode如何防止汉字转义成unicode
  • 原文地址:https://www.cnblogs.com/shenben/p/6713313.html
Copyright © 2011-2022 走看看