結果

問題 No.1308 ジャンプビーコン
ユーザー trineutrontrineutron
提出日時 2020-12-06 01:10:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,184 ms / 4,000 ms
コード長 1,674 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 211,436 KB
実行使用メモリ 145,408 KB
最終ジャッジ日時 2024-09-16 08:00:30
合計ジャッジ時間 22,836 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 18 ms
8,576 KB
testcase_14 AC 17 ms
8,448 KB
testcase_15 AC 21 ms
8,576 KB
testcase_16 AC 16 ms
8,576 KB
testcase_17 AC 15 ms
8,576 KB
testcase_18 AC 1,031 ms
144,512 KB
testcase_19 AC 1,041 ms
144,640 KB
testcase_20 AC 1,020 ms
144,640 KB
testcase_21 AC 1,012 ms
144,640 KB
testcase_22 AC 1,042 ms
144,640 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 919 ms
144,640 KB
testcase_27 AC 891 ms
144,640 KB
testcase_28 AC 908 ms
144,640 KB
testcase_29 AC 1,076 ms
145,024 KB
testcase_30 AC 1,090 ms
145,152 KB
testcase_31 AC 843 ms
145,152 KB
testcase_32 AC 987 ms
145,408 KB
testcase_33 AC 1,184 ms
145,152 KB
testcase_34 AC 912 ms
144,512 KB
testcase_35 AC 906 ms
144,512 KB
testcase_36 AC 944 ms
144,512 KB
testcase_37 AC 963 ms
144,640 KB
testcase_38 AC 1,079 ms
144,512 KB
testcase_39 AC 1,099 ms
144,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <typename T>
void chmin(T &a, T b) {
    if (b < a) {
        a = b;
    }
}

using graph = vector<vector<pair<int64_t, int64_t>>>;
using grid = vector<vector<int64_t>>;
using vec = vector<int64_t>;

constexpr int64_t inf = 1e18;
int64_t n, c;

void dfs(const graph &to, vector<int64_t> &dist, int v, int par) {
    for (auto [next, l] : to[v]) {
        if (next == par) continue;
        dist[next] = dist[v] + l;
        dfs(to, dist, next, v);
    }
}

void treedp(const graph &to, const grid &dist, const vec &prev, vec &next,
            vec &tele, int x0, int x1, int v, int par) {
    tele[v] = prev[v] + c + dist[v][x1];
    for (auto [child, _] : to[v]) {
        if (child == par) continue;
        treedp(to, dist, prev, next, tele, x0, x1, child, v);
        chmin(tele[v], tele[child]);
    }
    chmin(next[v], prev[v] + dist[x0][x1]);
    chmin(next[v], prev[x0] + dist[x0][v] + dist[v][x1]);
    chmin(next[v], tele[v]);
}

int main() {
    int64_t q;
    cin >> n >> q >> c;
    graph to(n);
    for (int i = 0; i < n - 1; i++) {
        int64_t u, v, l;
        cin >> u >> v >> l;
        u--; v--;
        to[u].emplace_back(v, l);
        to[v].emplace_back(u, l);
    }
    vector<int> x(q);
    for (int i = 0; i < q; i++) {
        cin >> x[i];
        x[i]--;
    }
    grid dist(n, vec(n));
    for (int i = 0; i < n; i++) {
        dfs(to, dist[i], i, -1);
    }

    grid dp(q, vec(n, inf));
    dp[0][x[0]] = 0;
    vec tele(n);
    for (int i = 1; i < q; i++) {
        treedp(to, dist, dp[i - 1], dp[i], tele, x[i - 1], x[i], x[i], -1);
    }
    cout << dp[q - 1][x[q - 1]] << endl;
}
0