Starship Troopers
Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 15457 Accepted Submission(s): 4152
To kill all the bugs is always easier than to capture their brains. A map is drawn for you, with all the rooms marked by the amount of bugs inside, and the possibility of containing a brain. The cavern's structure is like a tree in such a way that there is one unique path leading to each room from the entrance. To finish the battle as soon as possible, you do not want to wait for the troopers to clear a room before advancing to the next one, instead you have to leave some troopers at each room passed to fight all the bugs inside. The troopers never re-enter a room where they have visited before.
A starship trooper can fight against 20 bugs. Since you do not have enough troopers, you can only take some of the rooms and let the nerve gas do the rest of the job. At the mean time, you should maximize the possibility of capturing a brain. To simplify the problem, just maximize the sum of all the possibilities of containing brains for the taken rooms. Making such a plan is a difficult job. You need the help of a computer.
The last test case is followed by two -1's.
50 10
40 10
40 20
65 30
70 30
1 2
1 3
2 4
2 5
1 1
20 7
-1 -1
7
题意:n个房间m个士兵,接下来n行表示每个房间bug和收益,其中一个士兵能干掉20个bug,然后n-1行是房间之间连通情况,问m个人最大的收益
dp[i][j]表示根节点为i,j个士兵的收益,则dp[i][j] = max{dp[ i ][ j ], dp[ i ][j - k] + dp[ son[i] ][k] }
当一个房间的bug为0是也需要一个士兵,所以当m = 0时直接输出0
节点减一
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <vector>
using namespace std;
const int MAX = ;
int dp[MAX][MAX],vis[MAX],bug[MAX],p[MAX];
vector<int> son[MAX];
int n,m;
void dfs(int u)
{
vis[u] = true;
for(int i = bug[u]; i <= m; i++)
dp[u][i] = p[u];
int tot = (int) son[u].size();
for(int i = ; i < tot; i++)
{
int v = son[u][i];
if(vis[v])
continue;
dfs(v);
for(int j = m; j >= bug[u]; j--)
{
for(int k = ; k <= j - bug[u]; k++)
{
if(dp[u][j] < dp[u][j - k] + dp[v][k])
dp[u][j] = dp[u][j - k] + dp[v][k];
}
}
}
}
int main()
{
while(scanf("%d%d", &n, &m) != EOF)
{
if(n == - && m == -)
break;
for(int i = ; i < n; i++)
{
scanf("%d%d", &bug[i], &p[i]);
bug[i] = (bug[i] + ) / ;
}
for(int i = ; i <= n; i++)
son[i].clear();
for(int i = ; i < n - ; i++)
{
int a,b;
scanf("%d%d", &a, &b);
son[a - ].push_back(b - );
son[b - ].push_back(a - );
}
if(m == )
printf("0\n");
else
{
memset(vis, false, sizeof(vis));
memset(dp, , sizeof(dp));
dfs();
printf("%d\n", dp[][m]);
} } return ;
}