結果
問題 | No.1488 Max Score of the Tree |
ユーザー | chocono2230 |
提出日時 | 2021-04-23 22:17:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 98 ms / 2,000 ms |
コード長 | 1,671 bytes |
コンパイル時間 | 2,345 ms |
コンパイル使用メモリ | 214,972 KB |
実行使用メモリ | 82,432 KB |
最終ジャッジ日時 | 2024-07-04 08:12:41 |
合計ジャッジ時間 | 4,379 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 89 ms
78,848 KB |
testcase_01 | AC | 88 ms
75,776 KB |
testcase_02 | AC | 98 ms
79,616 KB |
testcase_03 | AC | 94 ms
82,432 KB |
testcase_04 | AC | 94 ms
82,432 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 25 ms
22,912 KB |
testcase_07 | AC | 53 ms
48,640 KB |
testcase_08 | AC | 38 ms
34,816 KB |
testcase_09 | AC | 27 ms
25,600 KB |
testcase_10 | AC | 55 ms
49,920 KB |
testcase_11 | AC | 94 ms
82,432 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 15 ms
14,720 KB |
testcase_14 | AC | 45 ms
41,088 KB |
testcase_15 | AC | 29 ms
26,752 KB |
testcase_16 | AC | 6 ms
7,680 KB |
testcase_17 | AC | 18 ms
17,792 KB |
testcase_18 | AC | 60 ms
56,192 KB |
testcase_19 | AC | 36 ms
32,512 KB |
testcase_20 | AC | 16 ms
14,848 KB |
testcase_21 | AC | 8 ms
9,216 KB |
testcase_22 | AC | 28 ms
26,112 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 | AC | 22 ms
21,248 KB |
testcase_27 | AC | 5 ms
5,888 KB |
testcase_28 | AC | 11 ms
11,648 KB |
testcase_29 | AC | 14 ms
14,464 KB |
testcase_30 | AC | 75 ms
66,688 KB |
testcase_31 | AC | 98 ms
82,432 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--) #define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++) #define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--) #define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++) #define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++) #define ALL(x) x.begin(), x.end() using ll = long long; using namespace std; int dfs(vector<vector<tuple<int, int, int>>> &tree, vector<ll> &p, ll &ans, int now, int bf, int adans) { int res = 0; bool f = false; for(auto [nx, c, i] : tree.at(now)) { if(nx == bf) continue; int r = dfs(tree, p, ans, nx, now, adans+c); p.at(i) = r*c; res += r; f = true; } if(!f) { ans += adans; res++; } // cerr << now << " " << res << endl; return res; } int main() { int n, k; cin >> n >> k; vector tree(n, vector<tuple<int, int, int>>()); vector<int> ip(n-1); rep(i, n-1) { int a, b, c; cin >> a >> b >> c; a--; b--; tree.at(a).push_back({b, c, i}); tree.at(b).push_back({a, c, i}); ip.at(i) = c; } vector<ll> p(n-1, 0); ll ans = 0; dfs(tree, p, ans, 0, -1, 0); // rep(i, n-1) cerr << p.at(i) << " "; // cerr << endl; // cerr << ans << endl; vector dp(n, vector<ll>(k+1, 0)); rep(i, n-1) { rep(j, k+1) { dp.at(i+1).at(j) = max(dp.at(i+1).at(j), dp.at(i).at(j)); if(j + ip.at(i) <= k) { dp.at(i+1).at(j+ip.at(i)) = max(dp.at(i+1).at(j+ip.at(i)), dp.at(i).at(j)+p.at(i)); } } } ans += dp.back().back(); cout << ans << endl; return 0; }