結果

問題 No.807 umg tours
ユーザー cherrypi59cherrypi59
提出日時 2019-04-20 16:15:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 345 ms / 4,000 ms
コード長 1,269 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 174,888 KB
実行使用メモリ 42,132 KB
最終ジャッジ日時 2024-11-23 19:27:23
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,420 KB
testcase_01 AC 4 ms
8,320 KB
testcase_02 AC 5 ms
8,576 KB
testcase_03 AC 5 ms
8,576 KB
testcase_04 AC 5 ms
8,320 KB
testcase_05 AC 5 ms
8,448 KB
testcase_06 AC 5 ms
8,440 KB
testcase_07 AC 4 ms
8,576 KB
testcase_08 AC 5 ms
8,320 KB
testcase_09 AC 5 ms
8,320 KB
testcase_10 AC 4 ms
8,288 KB
testcase_11 AC 185 ms
35,880 KB
testcase_12 AC 182 ms
26,240 KB
testcase_13 AC 271 ms
34,736 KB
testcase_14 AC 95 ms
19,296 KB
testcase_15 AC 69 ms
16,768 KB
testcase_16 AC 271 ms
36,540 KB
testcase_17 AC 341 ms
40,976 KB
testcase_18 AC 345 ms
41,004 KB
testcase_19 AC 335 ms
39,464 KB
testcase_20 AC 148 ms
23,040 KB
testcase_21 AC 169 ms
23,584 KB
testcase_22 AC 61 ms
15,096 KB
testcase_23 AC 45 ms
13,696 KB
testcase_24 AC 131 ms
32,936 KB
testcase_25 AC 326 ms
42,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long lint;
typedef pair<lint, int> P;

struct edge{int to; lint cost;};

const int MAX_N = (int)2e5 + 5;
const lint INF = (lint)1e16;
int N, M;
lint dist[MAX_N];
vector<edge> G[MAX_N];

void dijkstra(int s){
    priority_queue<P, vector<P>, greater<P>> pq;
    for(int i=0;i<2*N;i++) dist[i] = INF;
    dist[0] = dist[N] = 0; pq.push({0, 0});

    while(!pq.empty()){
        P p = pq.top(); pq.pop();
        if(dist[p.second]<p.first) continue;
        int u = p.second;
        for(auto v : G[u]){
            lint x = dist[v.to], y = dist[u]+v.cost;
            if(dist[v.to]>dist[u]+v.cost){
                dist[v.to] = dist[u] + v.cost;
                pq.push({dist[v.to], v.to});
            }
        }
    }
}

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

    dijkstra(0);

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

    return 0;
}
0