inlineintread(){ int x = 0; char c = getchar(); bool m = false; while (!isdigit(c) && c != '-') c = getchar(); if (c == '-') c = getchar(), m = true; while (isdigit(c)) x = x * 10 + c - 48, c = getchar(); if (m) return -x; elsereturn x; }
int n, m, s, fro, to, w; int dis[maxn]; bool visit[maxn]; vector <pair <int, int> > data[maxn]; __gnu_pbds::priority_queue <node, cmp, pairing_heap_tag> nico;
intmain(){ n = read (), m = read (), s = read ();
for (int i = 1; i <= m; i ++) { fro = read (), to = read (), w = read (); data[fro].push_back (make_pair (to, w)); }
for (int i = 1; i <= n; i ++) dis[i] = inff; dis[s] = 0; nico.push ((node) { 0, s }); while (!nico.empty ()) { fro = nico.top ().name; nico.pop (); if (visit[fro]) continue; visit[fro] = true; for (int i = 0; i < data[fro].size (); i ++) { to = data[fro][i].first; w = data[fro][i].second; if (!visit[to] && dis[fro] + w < dis[to]) { dis[to] = dis[fro] + w; nico.push ((node) { dis[to], to }); } } }
for (int i = 1; i <= n; i ++) fastwritespace (dis[i]);