結果

問題 No.807 umg tours
ユーザー betrue12betrue12
提出日時 2019-03-22 22:02:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 346 ms / 4,000 ms
コード長 1,165 bytes
コンパイル時間 2,606 ms
コンパイル使用メモリ 207,120 KB
実行使用メモリ 42,308 KB
最終ジャッジ日時 2024-11-23 19:00:13
合計ジャッジ時間 7,083 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,448 KB
testcase_01 AC 6 ms
8,448 KB
testcase_02 AC 6 ms
8,448 KB
testcase_03 AC 6 ms
8,448 KB
testcase_04 AC 6 ms
8,320 KB
testcase_05 AC 5 ms
8,320 KB
testcase_06 AC 6 ms
8,576 KB
testcase_07 AC 6 ms
8,448 KB
testcase_08 AC 5 ms
8,320 KB
testcase_09 AC 5 ms
8,320 KB
testcase_10 AC 5 ms
8,320 KB
testcase_11 AC 169 ms
35,844 KB
testcase_12 AC 178 ms
26,272 KB
testcase_13 AC 271 ms
34,700 KB
testcase_14 AC 94 ms
19,180 KB
testcase_15 AC 69 ms
16,992 KB
testcase_16 AC 274 ms
36,564 KB
testcase_17 AC 345 ms
40,896 KB
testcase_18 AC 336 ms
41,188 KB
testcase_19 AC 320 ms
39,500 KB
testcase_20 AC 153 ms
23,040 KB
testcase_21 AC 170 ms
23,608 KB
testcase_22 AC 60 ms
14,968 KB
testcase_23 AC 50 ms
13,696 KB
testcase_24 AC 131 ms
32,944 KB
testcase_25 AC 346 ms
42,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef pair<int64_t, int64_t> P;

vector<P> edges[200000];

int main(){
    int N, M;
    cin >> N >> M;
    for(int i=0; i<M; i++){
        int a, b, c;
        scanf("%d %d %d", &a, &b, &c);
        a--; b--;
        edges[a].push_back({b, c});
        edges[b].push_back({a, c});
        edges[a+N].push_back({b+N, c});
        edges[b+N].push_back({a+N, c});
        edges[a].push_back({b+N, 0});
        edges[b].push_back({a+N, 0});
    }

    int64_t dist[200000];
    for(int i=0; i<2*N; i++) dist[i] = 1e18;
    dist[0] = dist[N] = 0;
    priority_queue<P, vector<P>, greater<P>> que;
    que.push({0, 0});
    while(que.size()){
        auto p = que.top(); que.pop();
        int64_t d = p.first;
        int i = p.second;
        if(d > dist[i]) continue;
        for(auto& e : edges[i]){
            int j = e.first;
            int64_t d2 = d + e.second;
            if(d2 < dist[j]){
                dist[j] = d2;
                que.push({d2, j});
            }
        }
    }

    for(int i=0; i<N; i++){
        int64_t ans = dist[i] + dist[i+N];
        printf("%lld\n", ans);
    }
    return 0;
}
0