码迷,mamicode.com
首页 > 其他好文 > 详细

单源最短路 : 多起点

时间:2021-02-15 11:53:52      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:单源最短路   pac   lan   name   content   air   add   line   class   

https://www.acwing.com/problem/content/1139/

#include <bits/stdc++.h>
using namespace std;
#define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie(0)
inline int lowbit(int x) { return x & (-x); }
#define ll long long
#define pb push_back
#define PII pair<int, int>
#define fi first
#define se second
#define inf 0x3f3f3f3f
const int N = 1e3 + 7, M = 2e4 + 7;
int h[N], ne[M], e[M], w[M], idx;
int dist[N];
bool st[N];
int n, m, s, t;

void add(int a, int b, int c) {
    ne[idx] = h[a], e[idx] = b, w[idx] = c, h[a] = idx++;
}

void dijkstra() {
    int t;
    cin >> t;
    memset(dist, 0x3f, sizeof dist);
    memset(st, 0, sizeof st);
    priority_queue<PII, vector<PII>, greater<PII>> heap;
    while (t--) {
        int u;
        cin >> u;
        dist[u] = 0;
        heap.push({0, u});
    }
    while (heap.size()) {
        auto t = heap.top();
        heap.pop();
        int ver = t.se, d = t.fi;
        if (st[ver]) continue;
        st[ver] = true;
        for (int i = h[ver]; ~i; i = ne[i]) {
            int j = e[i];
            if (dist[j] > d + w[i]) {
                dist[j] = d + w[i];
                heap.push({dist[j], j});
            }
        }
    }
}

int main() {
    IO;
    while(cin >> n >> m >> s) {
        memset(h, -1 ,sizeof h);
        idx = 0;
        while (m--) {
            int a, b, c;
            cin >> a >> b >> c;
            add(a, b, c);
        }
        dijkstra();
        if (dist[s] == inf) dist[s] = -1;
        cout << dist[s] << ‘\n‘;
    }
    return 0;
}

单源最短路 : 多起点

标签:单源最短路   pac   lan   name   content   air   add   line   class   

原文地址:https://www.cnblogs.com/phr2000/p/14396110.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!