結果

問題 No.1488 Max Score of the Tree
ユーザー kwm_tkwm_t
提出日時 2021-04-24 18:05:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 1,583 bytes
コンパイル時間 1,542 ms
コンパイル使用メモリ 172,504 KB
実行使用メモリ 84,804 KB
最終ジャッジ日時 2024-07-04 09:10:00
合計ジャッジ時間 3,835 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
81,220 KB
testcase_01 AC 90 ms
77,124 KB
testcase_02 AC 96 ms
81,604 KB
testcase_03 AC 101 ms
84,676 KB
testcase_04 AC 103 ms
83,780 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 26 ms
25,288 KB
testcase_07 AC 56 ms
50,244 KB
testcase_08 AC 41 ms
37,064 KB
testcase_09 AC 30 ms
27,840 KB
testcase_10 AC 59 ms
51,908 KB
testcase_11 AC 98 ms
83,908 KB
testcase_12 AC 3 ms
7,752 KB
testcase_13 AC 18 ms
18,116 KB
testcase_14 AC 47 ms
43,972 KB
testcase_15 AC 31 ms
28,740 KB
testcase_16 AC 8 ms
10,052 KB
testcase_17 AC 20 ms
20,548 KB
testcase_18 AC 68 ms
58,436 KB
testcase_19 AC 39 ms
35,012 KB
testcase_20 AC 18 ms
17,988 KB
testcase_21 AC 9 ms
11,332 KB
testcase_22 AC 32 ms
28,612 KB
testcase_23 AC 3 ms
7,108 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 24 ms
22,976 KB
testcase_27 AC 6 ms
9,536 KB
testcase_28 AC 14 ms
14,532 KB
testcase_29 AC 17 ms
17,220 KB
testcase_30 AC 82 ms
69,448 KB
testcase_31 AC 98 ms
84,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
//#include "atcoder/all"
using namespace std;
//using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n-1); i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r-1);i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define endl "\n"
int child[100];
struct Edge {
	int to, dist;
	Edge(int _to, int _dist) :to(_to), dist(_dist) {}
};
long long deep;
vector<Edge>g[100005];
void dfs(int v, int p = -1) {
	int num = 0;
	if (1 == g[v].size()) num = 1;
	for (Edge e : g[v]) {
		if (p == e.to) continue;
		dfs(e.to, v);
		num += child[e.to];
		deep += child[e.to] * e.dist;
	}
	child[v] = num;
}
long long dp[105][100005];
int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n, k; cin >> n >> k;
	vector<long long>a(n - 1), b(n - 1), c(n - 1);
	rep(i, n - 1) {
		cin >> a[i] >> b[i] >> c[i];
		a[i]--; b[i]--;
		g[a[i]].emplace_back(b[i], c[i]);
		g[b[i]].emplace_back(a[i], c[i]);
	}
	deep = 0;
	dfs(0);
	rep(i, n - 1) {
		int add = min(child[a[i]], child[b[i]])*c[i];
		rep(j, k + 1) {
			if (j + c[i] <= k) {
				dp[i + 1][j + c[i]] = max(dp[i + 1][j + c[i]], dp[i][j] + add);
			}
			dp[i + 1][j] = max(dp[i + 1][j], dp[i][j]);
		}
	}
	long long ans = 0;
	rep(i, k + 1) ans = max(ans, dp[n - 1][i]);
	cout << deep + ans << endl;
	return 0;
}
0