标签:
题目大意:
#include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #include<cmath> #include<queue> #include<vector> #include<map> using namespace std; typedef long long LL; const int INF = 1e9+7; const int maxn = 115; const int MOD = 1e9+7; int dp[maxn][maxn], n, m;///第n个房间花费m 所能得到的最大消灭数量 int Cost[maxn], Value[maxn]; bool vis[maxn]; vector<vector<int> > G; void DFS(int root,int m) { vis[root] = true; int len = G[root].size(); if(len == 1 && vis[G[root][0]] && Cost[root] == 0) { dp[root][1] = Value[root]; return ; } for(int i=Cost[root]; i<=m; i++) dp[root][i] = Value[root]; for(int i=0; i<len; i++) { int v = G[root][i]; if(vis[v] || m-Cost[root] <= 0) continue; DFS(v, m-Cost[root]); for(int j=m-1; j>=Cost[root]; j--)///在root点留下来的士兵数量 { for(int k=1; k<=m-j; k++)///分配到儿子结点的数量 dp[root][j+k] = max(dp[root][j+k], dp[root][j] + dp[v][k]); } } } int main() { while(scanf("%d %d",&n, &m), n+m!=-2) { G.clear(); G.resize(n+2); memset(vis, false, sizeof(vis)); memset(dp, 0, sizeof(dp)); for(int i=1; i<=n; i++) { scanf("%d %d", &Cost[i], &Value[i]); Cost[i] = (Cost[i] + 19) / 20; } for(int i=1; i<n; i++) { int a, b; scanf("%d %d", &a, &b); G[a].push_back(b); G[b].push_back(a); } if(m) DFS(1, m); int ans = 0; for(int i=0; i<=m; i++) ans = max(ans, dp[1][i]); printf("%d\n", ans); } return 0; }
标签:
原文地址:http://www.cnblogs.com/chenchengxun/p/4867298.html