結果
問題 | No.417 チューリップバブル |
ユーザー | uenoku |
提出日時 | 2017-11-13 14:45:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,329 bytes |
コンパイル時間 | 2,446 ms |
コンパイル使用メモリ | 211,540 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-03 20:25:01 |
合計ジャッジ時間 | 8,086 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | AC | 4 ms
6,940 KB |
testcase_33 | AC | 9 ms
6,944 KB |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (lli i = 0; i < (n); i++) #define rrep(i, n) for (lli i = (n)-1; i >= 0; i--) using namespace std; using lli = long long int; vector<pair<int, int>> e[203]; int n, m; lli u[206]; vector<lli> sub(int cur, int par) { vector<vector<lli>> v; for (auto to : e[cur]) { if (to.first == par) continue; auto vv = sub(to.first, cur); vector<lli> hoge(m + 1, 0); rep(i, vv.size()) { if (i + 2 * to.second > m) { break; } hoge[i + 2 * to.second] = vv[i]; } v.push_back(hoge); } vector<lli> dp[2]; rep(i, 2) dp[i].assign(m + 1, u[cur]); rep(i, v.size()) { rep(j, m + 1) { rep(k, m + 1) { if (j + k > m) { break; } dp[(i + 1) % 2][j + k] = max(dp[(i + 1) % 2][j + k], dp[i][j] + v[i][k]); } } dp[i % 2].assign(m + 1, 0); } return dp[v.size() & 1]; } int main() { cin >> n >> m; rep(i, n) cin >> u[i]; int a, b, c; rep(i, n - 1) { cin >> a >> b >> c; e[a].push_back(make_pair(b, c)); e[b].push_back(make_pair(a, c)); } cout << sub(0, -1)[m] << endl; }