0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:25:24 +00:00

P4779 【模板】单源最短路径(标准版)

R53528371
This commit is contained in:
Baoshuo Ren 2021-07-19 08:11:55 +08:00 committed by Baoshuo Ren
parent ab435552b6
commit b09661055d
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,43 @@
#include <bits/stdc++.h>
using namespace std;
int n, m, s, u, v, w, dist[200005];
vector<pair<int, int>> g[200005];
bool st[200005];
void dijkstra() {
memset(dist, 0x3f, sizeof(dist));
dist[s] = 0;
priority_queue<pair<int, int>, vector<pair<int, int>>, greater<pair<int, int>>> q;
q.push(make_pair(0, s));
while (!q.empty()) {
auto t = q.top();
q.pop();
int tw = t.second;
int td = t.first;
if (st[tw]) continue;
for (auto i : g[tw]) {
int j = i.first;
if (dist[j] > td + i.second) {
dist[j] = td + i.second;
q.push(make_pair(dist[j], j));
}
}
st[tw] = true;
}
}
int main() {
cin >> n >> m >> s;
for (int i = 1; i <= m; i++) {
cin >> u >> v >> w;
g[u].push_back(make_pair(v, w));
}
dijkstra();
for (int i = 1; i <= n; i++) {
cout << dist[i] << ' ';
}
cout << endl;
return 0;
}