結果

問題 No.807 umg tours
ユーザー noisy_noiminnoisy_noimin
提出日時 2019-03-24 22:18:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 530 ms / 4,000 ms
コード長 1,182 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 80,660 KB
実行使用メモリ 42,952 KB
最終ジャッジ日時 2024-05-02 23:42:31
合計ジャッジ時間 7,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,344 KB
testcase_01 AC 5 ms
10,292 KB
testcase_02 AC 6 ms
10,476 KB
testcase_03 AC 6 ms
10,440 KB
testcase_04 AC 5 ms
10,404 KB
testcase_05 AC 6 ms
10,412 KB
testcase_06 AC 5 ms
10,452 KB
testcase_07 AC 5 ms
10,200 KB
testcase_08 AC 6 ms
10,236 KB
testcase_09 AC 5 ms
10,240 KB
testcase_10 AC 4 ms
10,224 KB
testcase_11 AC 301 ms
37,600 KB
testcase_12 AC 292 ms
27,288 KB
testcase_13 AC 406 ms
35,780 KB
testcase_14 AC 162 ms
20,916 KB
testcase_15 AC 142 ms
18,724 KB
testcase_16 AC 426 ms
37,640 KB
testcase_17 AC 530 ms
42,296 KB
testcase_18 AC 521 ms
42,556 KB
testcase_19 AC 507 ms
40,016 KB
testcase_20 AC 299 ms
23,864 KB
testcase_21 AC 325 ms
24,332 KB
testcase_22 AC 124 ms
16,412 KB
testcase_23 AC 98 ms
15,208 KB
testcase_24 AC 306 ms
34,968 KB
testcase_25 AC 510 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