鱼C论坛

 找回密码
 立即注册
查看: 1533|回复: 0

求最短路的边数

[复制链接]
发表于 2022-7-26 15:47:54 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
给出一个无向图, 求 点1 -> 点n 的最短路, 并求出最短路上有几条边
最短路算法我可以了, 但是如何统计最短路上边数错了, 求一个方法, 我代码在下面:
#include <bits/stdc++.h>
using namespace std;

struct edge{ // 边
        int to, w;
};
struct node{ // 点
        int code, dist;
};
struct cmp{
        inline bool operator()(const node & a, const node & b){
                return a.dist > b.dist;
        }
};
const int N = 20005;
priority_queue<node, vector<node>, cmp> heap; // 堆优化
vector<edge> e[N]; // 邻接矩阵
bitset<N> vis; // 等同于 bool 数组
int dist[N]; // 距离
int path[N]; // 边的数量
int n, m, a, b, c; // n个点, m条边, 由 a 到 b 的权值为 c 的边

void dijkstra(){
        vis.reset();
        memset(dist, 0x3f, sizeof(dist));
        memset(path, 0, sizeof(path)); // 初始化
        dist[1] = 0;
        heap.push({1, 0});
        while(!heap.empty()){
                auto p = heap.top();
                heap.pop();
                if(vis[p.code]) continue;
                vis[p.code] = 1;
                for(auto ed : e[p.code]){
                        if(dist[ed.to] > dist[p.code] + ed.w){
                                dist[ed.to] = dist[p.code] + ed.w;
                                heap.push({ed.to, dist[ed.to]});
                                path[ed.to] = path[p.code] + 1; // 这里加最短路的边 , 不知道为什么不对
                        }
                }
        }
}

int main(){
        ios::sync_with_stdio(0);
        cin.tie(0); cout.tie(0);
        
        cin >> n >> m;
        for(int i = 0; i < m; i++){
                cin >> a >> b >> c;
                e[a].push_back({b, c});
                e[b].push_back({a, c});
        }

        dijkstra();

        cout << dist[n] << ' ' << path[n] << endl;
        for(int i = 1; i <= n; i++){
                cout << path[i] << ' '; // 就是这个边数求不对 , 求解
        }
        
        return 0;
}
屏幕截图 2022-07-26 154657.png
输入 :
3 3 
1 3 2
1 2 1
2 3 1
输出 :
2 3
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-17 06:19

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表