hdu 2544 最短路 (Dijstra + Heap优化)

题目链接:HDU 2544


#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;

const int maxn = 11111;
const int inf = (int)1e9;

struct Edge
{
    int v, next;  // v 边所指向的节点 next 边所指向的节点的指针
    int cost;     // 权值
    Edge() {}
    Edge(int a, int b) { v = a, cost = b; }
    bool operator<(const Edge & x)const {
        return cost > x.cost;
    }
} edge[maxn];

int eh[maxn], tot, dist[maxn];   // eh[i] 指针数组,存放节点i所指向的节点的指针  tot为边数组的下标
int n;
bool vist[maxn];

void addedge(int a, int b, int c)  // 添加从a指向b的边,权值为c
{
    edge[tot].v = b, edge[tot].next = eh[a], edge[tot].cost = c;
    eh[a] = tot++;
}

void dij(int s)  // 以s为起点求最短路
{
    for (int i = 0; i <= n; i++) dist[i] = inf, vist[i] = false;
    dist[s] = 0;
    priority_queue< Edge > que;
    que.push(Edge(s, 0));
    while (!que.empty()) {
        int u = que.top().v;
        que.pop();
        if (vist[u]) continue;
        vist[u] = true;
        for (int j = eh[u]; j != -1; j = edge[j].next) {
            int v = edge[j].v;
            if (!vist[v] && dist[u] + edge[j].cost < dist[v]) {
                dist[v] = dist[u] + edge[j].cost;
                que.push(Edge(v, dist[v]));
            }
        }
    }
}

void init()  // 初始化
{
    tot = 0;
    memset(eh, -1, sizeof (eh));
}

int main()
{
    freopen("in", "r", stdin);
    int m, a, b, c;
    while(scanf("%d%d", &n, &m), n||m) {
        init();
        for(int i = 0; i < m; i++) {
            scanf("%d%d%d", &a, &b, &c);
            addedge(a, b, c);
            addedge(b, a, c);
        }
        dij(1);
        printf("%d\n", dist[n]);
    }
    return 0;
}






  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值