結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,192 KB
testcase_01 AC 3 ms
8,320 KB
testcase_02 AC 3 ms
8,576 KB
testcase_03 AC 4 ms
8,576 KB
testcase_04 AC 4 ms
8,320 KB
testcase_05 AC 3 ms
8,448 KB
testcase_06 AC 3 ms
8,368 KB
testcase_07 AC 4 ms
8,576 KB
testcase_08 AC 3 ms
8,448 KB
testcase_09 AC 3 ms
8,320 KB
testcase_10 AC 3 ms
8,320 KB
testcase_11 AC 175 ms
35,880 KB
testcase_12 AC 152 ms
26,116 KB
testcase_13 AC 213 ms
34,604 KB
testcase_14 AC 87 ms
19,168 KB
testcase_15 AC 58 ms
16,768 KB
testcase_16 AC 220 ms
36,616 KB
testcase_17 AC 308 ms
40,980 KB
testcase_18 AC 285 ms
41,128 KB
testcase_19 AC 263 ms
39,336 KB
testcase_20 AC 141 ms
22,912 KB
testcase_21 AC 143 ms
23,584 KB
testcase_22 AC 51 ms
14,968 KB
testcase_23 AC 41 ms
13,820 KB
testcase_24 AC 124 ms
32,936 KB
testcase_25 AC 285 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