码迷,mamicode.com
首页 > 其他好文 > 详细

Top_Sort+Floyd实现关键路径

时间:2018-08-30 13:41:57      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:sort   实现   关键路径   include   class   floyd   bsp   name   for   

Top_Sort+Floyd实现关键路径

#include<iostream>
using namespace std;
int n,m;
int g[5000][5000];
int in[5000];
int top[5000];
int d[5000];
void top_sort()
{
    for(int i=1;i<=n;i++)
    {
        int k=1;
        while(k<=n&&in[k]!=0)k++;
        in[k]=0x7fffffff;
        top[i]=k;
        for(int o=1;o<=n;o++)if(g[k][o]!=0)in[o]--;
    }
}
int main()
{
    cin>>n>>m;
    for(int i=1;i<=m;i++)
    {
        int a,b,c;
        cin>>a>>b>>c;
        g[a][b]=c;
        in[b]++;//b的入度++ 
    }
    top_sort();//拓扑排序 
    for(int i=2;i<=n;i++)
        for(int o=1;o<=i-1;o++)
            if(g[top[o]][top[i]]+d[top[o]]>d[top[i]])
                d[top[i]]=g[top[o]][top[i]]+d[top[o]];
    cout<<d[top[n]];
}

 


 

Top_Sort+Floyd实现关键路径

标签:sort   实现   关键路径   include   class   floyd   bsp   name   for   

原文地址:https://www.cnblogs.com/boruto/p/9559623.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!