結果

問題 No.807 umg tours
ユーザー noisy_noiminnoisy_noimin
提出日時 2019-03-24 22:18:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 646 ms / 4,000 ms
コード長 1,182 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 81,552 KB
実行使用メモリ 42,952 KB
最終ジャッジ日時 2024-11-23 19:20:50
合計ジャッジ時間 8,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
10,240 KB
testcase_01 AC 8 ms
10,240 KB
testcase_02 AC 8 ms
10,444 KB
testcase_03 AC 8 ms
10,368 KB
testcase_04 AC 8 ms
10,240 KB
testcase_05 AC 8 ms
10,348 KB
testcase_06 AC 9 ms
10,496 KB
testcase_07 AC 8 ms
10,352 KB
testcase_08 AC 7 ms
10,240 KB
testcase_09 AC 7 ms
10,240 KB
testcase_10 AC 7 ms
10,368 KB
testcase_11 AC 368 ms
37,596 KB
testcase_12 AC 357 ms
27,420 KB
testcase_13 AC 490 ms
35,780 KB
testcase_14 AC 208 ms
20,912 KB
testcase_15 AC 160 ms
18,688 KB
testcase_16 AC 517 ms
37,648 KB
testcase_17 AC 642 ms
41,656 KB
testcase_18 AC 645 ms
41,780 KB
testcase_19 AC 628 ms
40,124 KB
testcase_20 AC 362 ms
23,808 KB
testcase_21 AC 373 ms
24,320 KB
testcase_22 AC 159 ms
16,512 KB
testcase_23 AC 125 ms
15,128 KB
testcase_24 AC 335 ms
33,736 KB
testcase_25 AC 646 ms
42,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <queue>
#include <vector>
#include <utility>

using namespace std;

typedef long long ll;
typedef pair<ll, ll> Pll;

const int MAX_N = 112345;

int n,m,a,b; ll c;
vector<ll> d(MAX_N*2, 1LL << 60);
priority_queue< Pll, vector<Pll>, greater<Pll> > que;
vector< vector<Pll> > edges(MAX_N*2);

void dijkstra(ll start){
    d[start] = 0;
    d[n+start] = 0;
    que.push(Pll(0, start));

    while(!que.empty()){
        Pll v = que.top(); que.pop();
        if(d[v.second] < v.first) continue;
        for(Pll e: edges[v.second]){
            if(d[e.first] > d[v.second] + e.second){
                d[e.first] = d[v.second] + e.second;
                que.push(Pll(d[e.first], e.first));
            }
        }
    }
}

int main() {
    cin >> n >> m;
    for(int i=0;i<m;++i) {
        cin >> a >> b >> c;
        --a; --b;
        edges[a].emplace_back(b, c);
        edges[b].emplace_back(a, c);
        edges[a].emplace_back(n+b, 0);
        edges[b].emplace_back(n+a, 0);
        edges[n+a].emplace_back(n+b, c);
        edges[n+b].emplace_back(n+a, c);
    }

    dijkstra(0);

    for(int i=0;i<n;++i) {
        cout << d[i]+d[n+i] << endl;
    }
}
0