結果

問題 No.807 umg tours
ユーザー erbowlerbowl
提出日時 2019-03-23 14:14:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 535 ms / 4,000 ms
コード長 1,516 bytes
コンパイル時間 1,649 ms
コンパイル使用メモリ 177,096 KB
実行使用メモリ 42,176 KB
最終ジャッジ日時 2024-05-02 23:40:44
合計ジャッジ時間 8,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
9,656 KB
testcase_01 AC 7 ms
9,728 KB
testcase_02 AC 5 ms
9,728 KB
testcase_03 AC 3 ms
9,728 KB
testcase_04 AC 4 ms
9,600 KB
testcase_05 AC 6 ms
9,692 KB
testcase_06 AC 5 ms
9,856 KB
testcase_07 AC 4 ms
9,784 KB
testcase_08 AC 6 ms
9,852 KB
testcase_09 AC 4 ms
9,732 KB
testcase_10 AC 4 ms
9,728 KB
testcase_11 AC 295 ms
36,844 KB
testcase_12 AC 280 ms
26,656 KB
testcase_13 AC 415 ms
35,000 KB
testcase_14 AC 166 ms
20,132 KB
testcase_15 AC 126 ms
17,792 KB
testcase_16 AC 415 ms
36,864 KB
testcase_17 AC 525 ms
40,900 KB
testcase_18 AC 533 ms
41,024 KB
testcase_19 AC 506 ms
39,236 KB
testcase_20 AC 306 ms
23,040 KB
testcase_21 AC 311 ms
23,552 KB
testcase_22 AC 125 ms
15,708 KB
testcase_23 AC 96 ms
14,464 KB
testcase_24 AC 301 ms
32,832 KB
testcase_25 AC 535 ms
42,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
#include <bits/stdc++.h>
using namespace std;
template<typename A, size_t N, typename T>
void Fill(A (&array)[N], const T &val){
    std::fill( (T*)array, (T*)(array+N), val );
}
typedef pair<ll, ll> P;
struct edge {
    ll to;
    ll cost;
};
vector<edge> G[200010];
int main() {
    ll n,m;
    std::cin >> n>>m;
    ll d[200010];
    ll inf = 100000000000000+10;
    Fill(d,inf);
    d[0] = 0;
    for (int i = 0; i < m; i++) {
        ll tmp_a,tmp_b,tmp_c;
        std::cin >> tmp_a>>tmp_b>>tmp_c;
        tmp_a--;
        tmp_b--;
        edge e1 = {tmp_b,tmp_c};
        edge e2 = {tmp_a,tmp_c};
        G[tmp_a].push_back(e1);
        G[tmp_b].push_back(e2);
        
        G[tmp_a].push_back({tmp_b+n,0});
        G[tmp_b].push_back({tmp_a+n,0});
        
        G[tmp_b+n].push_back({tmp_a+n,tmp_c});
        G[tmp_a+n].push_back({tmp_b+n,tmp_c});
    }
    
    priority_queue<P, vector<P>, greater<P> > que;
    que.push(P(0, 0));
    while (!que.empty()) {
        P p = que.top();
        que.pop();
        int v = p.second;
        if (d[v] < p.first) continue;

        for (int i=0; i<G[v].size(); ++i) {
            edge e = G[v][i];
            if (d[e.to] > d[v] + e.cost) {
                d[e.to] = d[v] + e.cost;
                que.push(P(d[e.to], e.to));
            }
        }
    }
    
    for (int i = 0; i < n; i++) {
        if(i==0){
            std::cout << 0 << std::endl;
        }else{
            std::cout << d[i]+d[n+i]<< std::endl;
        }
    }
}
0