結果

問題 No.807 umg tours
ユーザー firiexpfiriexp
提出日時 2019-08-28 21:47:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 305 ms / 4,000 ms
コード長 1,686 bytes
コンパイル時間 972 ms
コンパイル使用メモリ 108,752 KB
実行使用メモリ 44,508 KB
最終ジャッジ日時 2024-05-03 10:08:39
合計ジャッジ時間 6,371 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 159 ms
32,576 KB
testcase_12 AC 145 ms
24,664 KB
testcase_13 AC 213 ms
33,440 KB
testcase_14 AC 80 ms
16,504 KB
testcase_15 AC 59 ms
13,696 KB
testcase_16 AC 208 ms
35,236 KB
testcase_17 AC 282 ms
42,548 KB
testcase_18 AC 290 ms
42,548 KB
testcase_19 AC 281 ms
39,500 KB
testcase_20 AC 134 ms
22,732 KB
testcase_21 AC 129 ms
23,492 KB
testcase_22 AC 56 ms
12,160 KB
testcase_23 AC 43 ms
10,240 KB
testcase_24 AC 124 ms
33,772 KB
testcase_25 AC 305 ms
44,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <limits>
#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

template <typename T>
struct edge {
    int from, to; T cost;
    edge(int to, T cost) : from(-1), to(to), cost(cost) {}
    edge(int from, int to, T cost) : from(from), to(to), cost(cost) {}
};

template <typename T>
vector<T> dijkstra(int s,vector<vector<edge<T>>> &G){
    size_t n=G.size();
    vector<T> d(n, INF<T>);
    priority_queue<pair<T, int>,vector<pair<T, int>>,greater<>> Q;
    d[s]=0;
    Q.emplace(0,s);
    while(!Q.empty()){
        T cost; int i;
        tie(cost, i) = Q.top(); Q.pop();
        if(d[i] < cost) continue;
        for (auto &&e : G[i]) {
            auto cost2 = cost + e.cost;
            if(d[e.to] <= cost2) continue;
            d[e.to] = cost2;
            Q.emplace(d[e.to], e.to);
        }
    }
    return d;
}

int main() {
    int n, m;
    cin >> n >> m;
    vector<vector<edge<ll>>> G(2*n);
    for (int i = 0; i < m; ++i) {
        int a, b; ll c; scanf("%d %d %lld", &a, &b, &c);
        a--; b--;
        G[a].emplace_back(b, c);
        G[b].emplace_back(a, c);
        G[a].emplace_back(b+n, 0);
        G[b].emplace_back(a+n, 0);
        G[a+n].emplace_back(b+n, c);
        G[b+n].emplace_back(a+n, c);
    }
    auto dist = dijkstra(0, G);
    puts("0");
    for (int i = 1; i < n; ++i) {
        printf("%lld\n", dist[i]+dist[i+n]);
    }
    return 0;
}
0