結果

問題 No.807 umg tours
ユーザー potoooooooopotoooooooo
提出日時 2019-03-25 15:26:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 502 ms / 4,000 ms
コード長 1,394 bytes
コンパイル時間 1,971 ms
コンパイル使用メモリ 177,224 KB
実行使用メモリ 19,808 KB
最終ジャッジ日時 2024-05-02 23:44:16
合計ジャッジ時間 8,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 295 ms
14,116 KB
testcase_12 AC 282 ms
12,328 KB
testcase_13 AC 391 ms
15,548 KB
testcase_14 AC 163 ms
8,832 KB
testcase_15 AC 131 ms
7,936 KB
testcase_16 AC 417 ms
17,268 KB
testcase_17 AC 496 ms
19,120 KB
testcase_18 AC 496 ms
19,168 KB
testcase_19 AC 502 ms
19,220 KB
testcase_20 AC 309 ms
12,160 KB
testcase_21 AC 337 ms
12,288 KB
testcase_22 AC 130 ms
7,296 KB
testcase_23 AC 100 ms
6,400 KB
testcase_24 AC 306 ms
16,504 KB
testcase_25 AC 494 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