欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Codeforces Round #261 (Div. 2) E. Pashmak and Graph(DP)

程序员文章站 2022-06-04 09:54:00
...

题目链接
Codeforces Round #261 (Div. 2) E. Pashmak and Graph(DP)
Codeforces Round #261 (Div. 2) E. Pashmak and Graph(DP)
题意:给出m条边n个点每条边都有权值问如果两边能够相连的条件是边权值是严格递增的话,最长能接几条边。
思路:dp【i】代表前i条边能满足条件的最大长度,g【i】代表以i点为结尾的最大长度。

#include<bits/stdc++.h> 
using namespace std;
typedef long long ll;
const int maxn=3e5+1;
const int mod=1e9+7;
int dp[maxn],g[maxn],ans=1;
struct node{
	int u,v,w,id;
}s[maxn];
bool cmp(const node &a,const node &b)
{
	return a.w<b.w;
}
int main()
{
	int n,m,u,v,w,j,t=1;
	scanf("%d %d",&n,&m);
	for(int i=1;i<=m;++i)
	{
		scanf("%d %d %d",&u,&v,&w);
		s[i].u=u,s[i].v=v,s[i].w=w,s[i].id=i;
	}
	sort(s+1,s+1+m,cmp);
	for(int i=1;i<=m;++i)
	{
		dp[i]=g[s[i].u]+1;
		if(s[i].w!=s[i+1].w) 
		{
			for(j=t;j<=i;++j)
			g[s[j].v]=max(g[s[j].v],dp[j]);
			t=i+1;
		 } 
	}
	for(int i=1;i<=m;++i) ans=max(ans,dp[i]);
	printf("%d\n",ans);
}
相关标签: 动态规划