結果

問題 No.807 umg tours
ユーザー potoooooooopotoooooooo
提出日時 2019-03-25 15:26:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 441 ms / 4,000 ms
コード長 1,394 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 178,372 KB
実行使用メモリ 19,808 KB
最終ジャッジ日時 2024-11-23 19:22:44
合計ジャッジ時間 7,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 263 ms
14,372 KB
testcase_12 AC 247 ms
12,452 KB
testcase_13 AC 341 ms
15,452 KB
testcase_14 AC 146 ms
8,960 KB
testcase_15 AC 119 ms
7,936 KB
testcase_16 AC 361 ms
17,268 KB
testcase_17 AC 430 ms
19,116 KB
testcase_18 AC 441 ms
19,172 KB
testcase_19 AC 433 ms
19,324 KB
testcase_20 AC 271 ms
12,160 KB
testcase_21 AC 282 ms
12,416 KB
testcase_22 AC 119 ms
7,296 KB
testcase_23 AC 92 ms
6,528 KB
testcase_24 AC 300 ms
16,504 KB
testcase_25 AC 424 ms
19,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

struct edge {
    int to; long long dist;
    edge(int t, long long d) {
        to = t; dist = d;
    }
};

int main() {
    int n, m; cin >> n >> m;
    vector<edge> v[n];
    for (int i = 0; i < m; i++) {
        int a, b; long long c;
        cin >> a >> b >> c;
        v[a-1].emplace_back(b-1, c);
        v[b-1].emplace_back(a-1, c);
    }
    vector<long long> d(n, 1e17), d2(n, 1e17);
    d[0] = 0; d2[0] = 0;
    priority_queue<pair<long long, int>> pq;
    pq.push({d[0], 0});
    while (!pq.empty()) {
        int cur = pq.top().second;
        long long dist = -pq.top().first;
        pq.pop();
        if (dist != d[cur]) continue;
        for (auto e: v[cur]) {
            if (d[e.to] > d[cur] + e.dist) {
                d[e.to] = d[cur] + e.dist;
                pq.push({-d[e.to], e.to});
            }
        }
    }
    pq.push({d2[0], 0});
    while (!pq.empty()) {
        int cur = pq.top().second;
        long long dist = -pq.top().first;
        pq.pop();
        if (dist != d2[cur]) continue;
        for (auto e: v[cur]) {
            if (d2[e.to] > min(d2[cur] + e.dist, d[cur])) {
                d2[e.to] = min(d2[cur] + e.dist, d[cur]);
                pq.push({-d2[e.to], e.to});
            }       
        }
    }
    for (int i = 0; i < n; i++) {
        cout << d[i] + d2[i] << endl;
    }
    return 0;
}
0