Each test case contains three parts.
The first part is two numbers N K, whose meanings we have talked about just now. We denote the nodes by 1 2 ... N. Since it is a tree, each node can reach any other in only one route. (1<=N<=100, 0<=K<=200)
The second part contains N integers (All integers are nonnegative and not bigger than 1000). The ith number is the amount of apples in Node i.
The third part contains N-1 line. There are two numbers A,B in each line, meaning that Node A and Node B are adjacent.
Input will be ended by the end of file.
Note: Wshxzt starts at Node 1.
2 1 0 11 1 2 3 2 0 1 2 1 2 1 3
11 2
题意:一颗树,n个点(1-n),n-1条边,每个点上有一个权值,求从1出发,走V步,最多能遍历到的权值
思路:
树形dp,比较经典的一个树形dp。首先很容易就可以想到用dp[root][k]表示以root为根的子树中最多走k时所能获得的最多苹果数,接下去我们很习惯地会想到将k步在root的所有子结点中分配,也就是进行一次背包,就可以得出此时状态的最优解了,但是这里还有一个问题,那就是在进行背包的时候,对于某个孩子son走完之后是否回到根结点会对后面是否还能分配有影响,为了解决这个问题,我们只需要在状态中增加一维就可以了,用dp[root][k][0]表示在子树root中最多走k步,最后还是回到root处的最大值,dp[root][k][1]表示在子树root中最多走k步,最后不回到root处的最大值。由此就可以得出状态转移方程了:
dp[root][j][0] = MAX (dp[root][j][0] ,dp[root][j-k][0] + dp[son][k-2][0]);//从s出发,要回到s,需要多走两步s-t,t-s,分配给t子树k步,其他子树j-k步,都返回
dp[root][j]][1] = MAX( dp[root][j][1] , dp[root][j-k][0] +dp[son][k-1][1]) ;//先遍历s的其他子树,回到s,遍历t子树,在当前子树t不返回,多走一步
dp[root][j][1] = MAX (dp[root][j][1] ,dp[root][j-k][1] + dp[son][k-2][0]);//不回到s(去s的其他子树),在t子树返回,同样有多出两步、
代码:
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;
const int maxn=210;
struct Edge
{
int next;
int to;
}edge[maxn*3];
int head[maxn];
int apple[maxn];
int dp[maxn][maxn][2];
int vis[maxn];
int n,k,tot;
void add(int u, int v)
{
edge[++tot].next=head[u];
edge[tot].to=v;
head[u]=tot;
}
void dfs(int now)
{
vis[now]=1;
for(int i=0;i<=k;i++)
{
dp[now][i][0]=dp[now][i][1]=apple[now];
}
for(int i=head[now]; i!=0; i=edge[i].next)
{
int next=edge[i].to;
if(vis[next]) continue;
dfs(next);
for(int j=k;j>=1;j--)
{
for(int m=1; m<=j; m++)
{
dp[now][j][0]=max(dp[now][j][0],dp[now][j-m][1]+dp[next][m-1][0]);
dp[now][j][0]=max(dp[now][j][0],dp[now][j-m][0]+dp[next][m-2][1]);
dp[now][j][1]=max(dp[now][j][1],dp[now][j-m][1]+dp[next][m-2][1]);
}
}
}
}
int main()
{
ios::sync_with_stdio(false);
int u, v;
while(cin>>n>>k)
{
tot=0;
memset(edge, 0, sizeof(edge));
memset(apple, 0, sizeof(apple));
memset(dp, 0, sizeof(dp));
memset(vis, 0, sizeof(vis));
memset(head, 0, sizeof(head));
for(int i=1;i<=n;i++)
{
cin>>apple[i];
}
for(int i=1;i<=n-1;i++)
{
cin>>u>>v;
add(u, v);
add(v, u);
}
dfs(1);
int ans=max(dp[1][k][0], dp[1][k][1]);
cout<<ans<<endl;
}
return 0;
}