魔法阵-蓝桥每日真题

本文详细介绍了如何在编程竞赛环境中,利用Dijkstra算法求解一个关于节点之间的最短路径问题,以0-1背包形式表示,并以C++代码展示了在蓝桥云课平台上的实际应用。
摘要由CSDN通过智能技术生成

0魔法阵 - 蓝桥云课 (lanqiao.cn)

#include <iostream>
#include <queue>
#include <vector>
#include <cstring>
#include <algorithm>

using namespace std;

#define x first
#define y second
const int N = 1010;
const int inf  = 1e4;
vector<pair<int,int>> a[N];
int f[N][20];
int st[N];

int main(){
    int n,k,m;
    cin>>n>>k>>m;
    int u,v,w;
    while(m--){
        cin>>u>>v>>w;
        a[u].push_back({v,w});
        a[v].push_back({u,w});
    }
    queue<int> q;
    memset(f,inf,sizeof f);
    f[0][0] = 0;
    q.push(0);

    while(q.size()){
        int u = q.front();
        q.pop();
        st[u] = 0;
        for(auto i : a[u]){
            int v = i.first;
            int w = i.second;
            bool flag = false;
            if(f[v][0]>f[u][0]+w){
                f[v][0] = f[u][0]+w;
                flag = true;
            }
            for(int i = 1;i<=k;i++){
                if(f[v][i]>f[u][i-1]){
                    f[v][i] = f[u][i-1];
                    flag = true;
                }
            }
            if(f[v][k]>f[u][k]+w){
                flag  = true;
                f[v][k] = f[u][k]+w;
            }
            if(flag&&!st[v]){
                q.push(v);
                st[v] = 1;
            }

        }
    }

    cout<<min(f[n-1][k],f[n-1][0]);

    return 0;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值