关于拓扑排序关键路径,我原来看书来着,没有看明白,因为感觉书上讲的实在是太抽象了,(还是我自己资质太差),后来找到一篇博文,恰好,那篇博文也符合我的风格,一下便看明白了,其实自己想的话,也是可以想出来的,只是没有那份勇气,
题目:点击打开链接(感觉题目比较难以理解,还是自己的英语不好)
代码:(代码有一点我感觉用的比较好)
#include<cstdio>
#include<iostream>
#include<vector>
#include<queue>
#include<cstring>
using namespace std;
struct node
{
int y,t;
} edge[10009];
int T[1009];
vector<node> v[1009];
这一点,我感觉用的比较好,,,,,
int n,m;
int in[1009];
void solve()
{
queue<int> q;
for(int i=0; i<n; i++)
if(in[i]==0)
{
q.push(i);
T[i]=1;
}
while(!q.empty())
{
int x=q.front();
q.pop();
// cout<<x<<endl;
for(int i=0; i<v[x].size(); i++)
{
int y=v[x][i].y;
T[y]=max(T[y],T[x]+v[x][i].t);
in[y]--;
if(in[y]==0)
{
q.push(y);
}
}
}
int ans=0;
for(int i=0; i<n; i++)
ans=max(ans,T[i]);
cout<<ans<<endl;
}
int main()
{
int a,b,t;
while(scanf("%d%d",&n,&m)!=EOF)
{
memset(in,0,sizeof(in));
memset(T,0,sizeof(T));
for(int i=0; i<n; i++)
v[i].clear();
for(int i=0; i<m; i++)
{
scanf("%d%d%d",&a,&edge[i].y,&edge[i].t);
v[a].push_back(edge[i]);
in[edge[i].y]++;
}
solve();
}
}
如这篇代码,这就是关键路径·,对于关键路径,我也是指略知皮毛,算法之博大精深,还有许多等我去发现,,,,,,
我打了一遍代码:
#include<stdio.h>
#include<algorithm>
#include<queue>
#include<vector>
#include<string.h>
using namespace std;
struct qq
{
int a,b;
} q[10010];
vector<qq >e[2000];
queue<int >r;
int count1[2000];
int t[2000];
int main()
{
int n,m;
while(~scanf("%d%d",&n,&m))
{
int w;
for(int i=0;i<n;i++)
e[i].clear();
memset(t,0,sizeof(t));
memset(count1,0,sizeof(count1));
for(int i=0; i<m; i++)
{
scanf("%d%d%d",&w,&q[i].a,&q[i].b);
e[w].push_back(q[i]);
count1[q[i].a]++;
}
for(int i=0; i<n; i++)
if(count1[i]==0)
{
r.push(i);
t[i]=1;
}
while(!r.empty())
{
int y=r.front();
r.pop();
for(int i=0; i<(int )e[y].size(); i++)
{
t[e[y][i].a]=max(t[e[y][i].a],t[y]+e[y][i].b);
if(--count1[e[y][i].a]==0)
r.push(e[y][i].a);
}
}
int maxx=0;
for(int i=0; i<n; i++)
maxx=max(maxx,t[i]);
printf("%d\n",maxx);
}
return 0;
}