首页 > 其他分享 >dijsktra

dijsktra

时间:2023-04-01 09:22:18浏览次数:34  
标签:std 0x3f dist int dijsktra const

#include <bits/stdc++.h>

using namespace std;

const int N = 510;

int g[N][N], n, m;

int dist[N];
bool st[N];

int dijsktra()
{
    memset(dist, 0x3f, sizeof dist);
    dist[1] = 0;
    
    for(int i = 1; i < n; i ++)
    {
        int t = -1;
        for(int j = 1; j <= n; j ++)
            if(!st[j] && (t == -1 || dist[t] >= dist[j]))
                t = j;
        
        for(int j = 1; j <= n; j ++)
            dist[j] = min(dist[j], dist[t] + g[t][j]);
            
        st[t] = 1;
    }
    
    return (dist[n] == 0x3f3f3f3f ? -1 : dist[n]);
}

int main()
{
    memset(g, 0x3f, sizeof g);
    
    cin >> n >> m;
    
    for(int i = 1; i <= m; i ++)
    {
        int a, b, c;
        cin >> a >> b >>c;
        g[a][b] = min(g[a][b], c);
    }
    
    cout << dijsktra();
}

标签:std,0x3f,dist,int,dijsktra,const
From: https://www.cnblogs.com/lfyszy/p/17278071.html

相关文章

  • 基于链式前向星的堆优化dijsktra | 模板
    关于SPFA,ta死了基于链式前向星的堆优化\(dijsktra\):复杂度\(O(mlogn)\),要求非负权。#include<iostream>#include<cstdio>#include<cstring>#include<queue>#inc......
  • dijsktra求最短路径
    讲算法原理的有很多,直接贴代码dijkstra算法是直接对邻接矩阵进行操作求出最短路径的,我项目中的图结构需要转化成邻接矩阵,所以会有下面代码图结构是一个map,first表示节点的in......