Acwing 853.有边数限制的最短路

Acwing 853.有边数限制的最短路

链接:853. 有边数限制的最短路 - AcWing题库

Acwing 853.有边数限制的最短路_第1张图片

/*
题解:bellman_ford算法 可以算是一种暴力的算法了 他可以解决有复权边的单源最短路径 
也可以解决图是否存在负环的问题 还可以求出 不超过k条边的最短路径问题 但是效率低下
时间复杂度为o(nk)n是点数 k是最多经过的边次数
其算法就是枚举k遍 将每一条边进行松弛操作
*/
#include
#include
#include

using namespace std;

const int N=1e5;
const int inf = 0x3f3f3f3f;
struct node{
    int a;
    int b;
    int w;
}edge[N];
int n,m,k;
int dist[N];
int back[N];// 防止跟新出错 使用上次的数据
void bellman_ford(){
    memset(dist,0x3f,sizeof dist);
    dist[1]=0;
   
    for(int i=1;i<=k;i++){
        for(int j=1;j<=n;j++){
        back[j]=dist[j];  
       }
        for(int j=0;j0x3f3f3f3f/2)cout<<"impossible"<>n>>m>>k;
    for(int i=0;i>a>>b>>c;
        edge[i].a = a;
        edge[i].b = b;
        edge[i].w = c;
    }
    bellman_ford();
    return 0;
}

你可能感兴趣的:(算法,bellman_ford,最短路,负环)