結果
問題 | No.1488 Max Score of the Tree |
ユーザー | suisen |
提出日時 | 2021-04-23 22:47:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,969 bytes |
コンパイル時間 | 2,515 ms |
コンパイル使用メモリ | 209,844 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 08:29:57 |
合計ジャッジ時間 | 3,632 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 5 ms
5,376 KB |
testcase_11 | AC | 7 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 7 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 4 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using int128 = __int128_t; #define rep(i, n) for (int i = 0; i < n; ++i) #define reps(i, n, s) for (int i = 0; i < n; i += s) #define repl(i, l, r) for (int i = l; i < r; ++i) #define repsl(i, l, r, s) for (int i = l; i < r; i += s) #define all(iterable) (iterable).begin(), (iterable).end() constexpr int dx4[4] = {1, 0, -1, 0}; constexpr int dy4[4] = {0, 1, 0, -1}; constexpr int dx8[8] = {1, 1, 0, -1, -1, -1, 0, 1}; constexpr int dy8[8] = {0, 1, 1, 1, 0, -1, -1, -1}; template <typename T> void print(const vector<T>& vec, const string sep = " ", const string end = "\n") { int n = vec.size(); rep(i, n) { cout << vec[i]; if (i < n - 1) cout << sep; else cout << end; } } template <typename T> void read(vector<T>& a, int begin_index, int length) { if (a.size() < begin_index + length) a.resize(begin_index + length); while (length --> 0) cin >> a[begin_index++]; } template <typename T> void read(vector<T>& a) { read(a, 0, a.size()); } using tree = vector<vector<pair<int, int>>>; int main() { int n, k; cin >> n >> k; tree t(n); rep(i, n - 1) { int u, v, c; cin >> u >> v >> c; --u, --v; t[u].push_back({v, c}); t[v].push_back({u, c}); } long long ans = 0; vector<long long> val(n, 0), prd(n, 0); auto dfs = [&](auto self, int u, int p, int c) -> int { val[u] = c; int leaves = 0; for (auto &[v, c] : t[u]) { if (v == p) continue; leaves += self(self, v, u, c); } if (leaves == 0) ++leaves; ans += prd[u] = (long long) val[u] * leaves; return leaves; }; dfs(dfs, 0, -1, 0); vector<long long> dp(k + 1, 0); repl(i, 1, n) repl(j, val[i], k + 1) { dp[j] = max(dp[j], dp[j - val[i]] + prd[i]); } ans += *max_element(all(dp)); cout << ans << '\n'; return 0; }