結果

問題 No.417 チューリップバブル
ユーザー ooaiuooaiu
提出日時 2024-11-29 14:22:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 1,787 bytes
コンパイル時間 2,915 ms
コンパイル使用メモリ 258,416 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-29 14:22:23
合計ジャッジ時間 4,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 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 3 ms
5,248 KB
testcase_11 AC 10 ms
5,248 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 5 ms
5,248 KB
testcase_14 AC 9 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 7 ms
5,248 KB
testcase_18 AC 8 ms
5,248 KB
testcase_19 AC 6 ms
5,248 KB
testcase_20 AC 19 ms
5,248 KB
testcase_21 AC 17 ms
5,248 KB
testcase_22 AC 16 ms
5,248 KB
testcase_23 AC 20 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 14 ms
5,248 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 20 ms
5,248 KB
testcase_28 AC 19 ms
5,248 KB
testcase_29 AC 18 ms
5,248 KB
testcase_30 AC 30 ms
5,248 KB
testcase_31 AC 26 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 33 ms
6,400 KB
testcase_36 AC 30 ms
6,400 KB
testcase_37 AC 23 ms
6,400 KB
testcase_38 AC 17 ms
6,400 KB
testcase_39 AC 13 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

namespace std {

template <class Fun>
class y_combinator_result {
    Fun fun_;

   public:
    template <class T>
    explicit y_combinator_result(T &&fun) : fun_(std::forward<T>(fun)) {}

    template <class... Args>
    decltype(auto) operator()(Args &&...args) {
        return fun_(std::ref(*this), std::forward<Args>(args)...);
    }
};

template <class Fun>
decltype(auto) y_combinator(Fun &&fun) {
    return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));
}

}  // namespace std

void solve() {
    int N, M;
    cin >> N >> M;
    vector<int> U(N);
    for (int i = 0; i < N; i++) cin >> U[i];
    vector<vector<pair<int, int>>> G(N);
    for (int i = 1; i < N; i++) {
        int a, b, c;
        cin >> a >> b >> c;
        G[a].push_back({b, c});
        G[b].push_back({a, c});
    }
    const int64_t linf = 1e18;
    vector<vector<int64_t>> dp(N, vector<int64_t>(M + 1, -linf));
    y_combinator([&](auto self, int v, int p) -> void {
        dp[v][0] = U[v];
        for (const auto &[to, cst] : G[v]) if(to != p) {
            self(to, v);
            for(int i = M; i >= 0; i--) if(dp[v][i] != -linf) {
                for(int j = 0; j <= M; j++) if(dp[to][j] != -linf){
                    int t = 2 * cst + j + i;
                    if(t <= M) dp[v][t] = max(dp[v][t], dp[to][j] + dp[v][i]);
                }
            }
        }
    })(0, -1);
    int64_t ans = -linf;
    for(int i = 0; i <= M; i++) ans = max(ans, dp[0][i]);
    cout << ans << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0