-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10153.cpp
More file actions
40 lines (37 loc) · 955 Bytes
/
10153.cpp
File metadata and controls
40 lines (37 loc) · 955 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <utility>
#define ms(a,b) memset(a,b,sizeof(a))
using namespace std;
typedef long long ll;
typedef pair<int, int> PII;
const int mod = 998244353;
const int maxn = 100 + 5;
vector<PII> edge[maxn];
int n, q, dp[maxn][maxn];
void dfs(int u, int f) {
for (auto& x: edge[u]) {
int v = x.first;
if (v == f) continue;
dfs(v, u);
for (int i = q; i >= 1; i--) {
for (int j = 0; j + 1 <= i; j++) {
dp[u][i] = max(dp[u][i], dp[u][j] + dp[v][i - j - 1] + x.second);
}
}
}
}
int main() {
scanf("%d%d", &n, &q);
for (int i = 2, u, v, w; i <= n; i++) {
scanf("%d%d%d", &u, &v, &w);
edge[u].push_back({v, w});
edge[v].push_back({u, w});
}
dfs(1, 0);
cout << dp[1][q] << endl;
return 0;
}