mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 11:18:46 +00:00
P2015 二叉苹果树
R73420889
This commit is contained in:
parent
a4f2273938
commit
b6330846be
45
Luogu/P2015/P2015.cpp
Normal file
45
Luogu/P2015/P2015.cpp
Normal file
@ -0,0 +1,45 @@
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
|
||||
using std::cin;
|
||||
using std::cout;
|
||||
const char endl = '\n';
|
||||
|
||||
const int N = 105;
|
||||
|
||||
int n, q, l[N], r[N], a[N], f[N][N];
|
||||
std::vector<std::pair<int, int>> g[N];
|
||||
|
||||
void dfs(int u, int fa) {
|
||||
for (auto e : g[u]) {
|
||||
int v = e.first,
|
||||
w = e.second;
|
||||
|
||||
if (v == fa) continue;
|
||||
dfs(v, u);
|
||||
|
||||
for (int k = q; k; k--) {
|
||||
for (int j = k - 1; j >= 0; j--) {
|
||||
f[u][k] = std::max(f[u][k], w + f[u][k - j - 1] + f[v][j]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int main() {
|
||||
std::ios::sync_with_stdio(false);
|
||||
|
||||
cin >> n >> q;
|
||||
for (int i = 1, u, v, w; i < n; i++) {
|
||||
cin >> u >> v >> w;
|
||||
|
||||
g[u].push_back(std::make_pair(v, w));
|
||||
g[v].push_back(std::make_pair(u, w));
|
||||
}
|
||||
|
||||
dfs(1, -1);
|
||||
|
||||
cout << f[1][q] << endl;
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user