結果

問題 No.807 umg tours
ユーザー commycommy
提出日時 2020-04-29 18:58:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 337 ms / 4,000 ms
コード長 2,382 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 98,928 KB
実行使用メモリ 23,028 KB
最終ジャッジ日時 2024-11-23 20:01:22
合計ジャッジ時間 5,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 148 ms
15,404 KB
testcase_12 AC 188 ms
13,384 KB
testcase_13 AC 246 ms
16,468 KB
testcase_14 AC 105 ms
9,236 KB
testcase_15 AC 83 ms
8,004 KB
testcase_16 AC 239 ms
18,188 KB
testcase_17 AC 335 ms
21,968 KB
testcase_18 AC 333 ms
22,000 KB
testcase_19 AC 323 ms
20,116 KB
testcase_20 AC 206 ms
12,564 KB
testcase_21 AC 220 ms
12,704 KB
testcase_22 AC 90 ms
7,392 KB
testcase_23 AC 73 ms
6,400 KB
testcase_24 AC 204 ms
19,860 KB
testcase_25 AC 337 ms
23,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <numeric>
#include <utility>
#include <tuple>

#define REP(i, a, b) for (int i = int(a); i < int(b); i++)
using namespace std;
using ll = long long int;
using P = pair<ll, ll>;

// clang-format off
#ifdef _DEBUG_
#define dump(...) do{ cerr << __LINE__ << ":\t" << #__VA_ARGS__ << " = "; PPPPP(__VA_ARGS__); cerr << endl; } while(false)
template<typename T> void PPPPP(T t) { cerr << t; }
template<typename T, typename... S> void PPPPP(T t, S... s) { cerr << t << ", "; PPPPP(s...); }
#else
#define dump(...) do{ } while(false)
#endif
template<typename T> vector<T> make_v(size_t a, T b) { return vector<T>(a, b); }
template<typename... Ts> auto make_v(size_t a, Ts... ts) { return vector<decltype(make_v(ts...))>(a, make_v(ts...)); }
template<typename T> bool chmin(T &a, T b) { if (a > b) {a = b; return true; } return false; }
template<typename T> bool chmax(T &a, T b) { if (a < b) {a = b; return true; } return false; }
template<typename T> void print(T a) { cout << a << endl; }
template<typename T, typename... Ts> void print(T a, Ts... ts) { cout << a << ' '; print(ts...); }
template<typename T> istream &operator,(istream &in, T &t) { return in >> t; }
// clang-format on

#include <queue>
using T = tuple<ll, int, int>;

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n, m;
    cin, n, m;
    vector<vector<P>> G(n);
    REP(i, 0, m) {
        int a, b, c;
        cin, a, b, c;
        a--;
        b--;
        G[a].emplace_back(b, c);
        G[b].emplace_back(a, c);
    }
    priority_queue<T, vector<T>, greater<T>> pq;  // cost, to, used;
    pq.emplace(0, 0, 0);
    const ll inf = 1LL << 60;
    auto dp = make_v(2, n, inf);
    dp[0][0] = dp[1][0] = 0;
    while (pq.size()) {
        auto [cost, to, used] = pq.top();
        pq.pop();
        if (dp[used][to] < cost) continue;
        dp[used][to] = cost;
        for (auto [nto, ncost] : G[to]) {
            if (!used) {
                if (chmin(dp[1][nto], dp[used][to])) {
                    pq.emplace(dp[1][nto], nto, 1);
                }
            }
            if (chmin(dp[used][nto], dp[used][to] + ncost)) {
                pq.emplace(dp[used][nto], nto, used);
            }
        }
    }
    REP(i, 0, n) {
        cout << dp[0][i] + dp[1][i] << endl;
    }
    return 0;
}
0