• CF459E Pashmak and Graph [dp]


    dp,我们考虑到,这个其实你只需要按照边权排序,然后直接更新答案就完事了。
    如果要求多维递增,那么就是个多维数点问题,查一下最值就可以了。

    // by Isaunoya
    #include<bits/stdc++.h>
    using namespace std;
    struct io {
    	char buf[1 << 23 | 3], *s;
    	int f;
    	io() { f = 0, buf[fread(s = buf, 1, 1 << 23, stdin)] = '
    '; }
    	io& operator >> (int&x) {
    		for(x = f = 0; !isdigit(*s); ++s) f |= *s  == '-';
    		while(isdigit(*s)) x = x * 10 + (*s++ ^ 48);
    		return x = f ? -x : x, *this;
    	}
    };
    
    const int maxn = 3e5 + 53;
    vector <pair<int,int>> V[233333];
    int dp[maxn], tmp[maxn];
    
    signed main() {
    #ifdef LOCAL
    	freopen("testdata.in", "r", stdin);
    #endif
    	io in;
    	int n, m;
    	in >> n >> m;
    	while(m --) {
    		int u, v, w;
    		in >> u >> v >> w;
    		V[w].push_back({u, v});
    	}
    	for(int i = 1 ; i <= 1e5 ; i ++) {
    		for(auto x : V[i]) { tmp[x.first] = dp[x.first]; }
    		for(auto x : V[i]) {
    			int u = x.first, v = x.second;
    			dp[v] = max(dp[v], tmp[u] + 1);
    		}
    	}
    	int ans = 1;
    	for(int i = 1 ; i <= n ; i ++) ans = max(ans, dp[i]);
    	cout << ans << '
    ';
    	return 0;
    }
    
  • 相关阅读:
    tips for Flask
    REST
    数据结构与算法分析 in C语言
    大学环境对大学生学习心态的影响
    Qpython_文本读写_工作目录
    The Zen of Python
    SQL SERVER数据库中DDL语句
    sql server创建序列sequence
    macbook 安装redis流程及问题总结
    mac系统chrome浏览器快捷键
  • 原文地址:https://www.cnblogs.com/Isaunoya/p/12818952.html
Copyright © 2020-2023  润新知