记录编号 |
348308 |
评测结果 |
AWWWW |
题目名称 |
[HZOI 2016] 搜城探宝 |
最终得分 |
20 |
用户昵称 |
Go灬Fire |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.023 s |
提交时间 |
2016-11-14 07:26:34 |
内存使用 |
3.37 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<iostream>
#include<cmath>
#include<cstring>
using namespace std;
#define LL long long
const int maxn=1010;
struct Node{
int lch,rch,date;
}a[maxn];
int ans,n,m,f[maxn][maxn];
void Init();
int Dp(int x,int y){
if(x==0 || y==0)return 0;
if(f[x][y])return f[x][y];
if(!a[x].lch){
f[x][y]=a[x].date;
return f[x][y];
}
if(!a[x].rch){
f[x][y]=Dp(a[x].lch,y-1)+a[x].date;
return f[x][y];
}
for(int j=0;j<y;j++){
f[x][y]=max(f[x][y],Dp(a[x].lch,j)+Dp(a[x].rch,y-j-1));
}
f[x][y]+=a[x].date;
return f[x][y];
}
int main(){
freopen("hzoi_key.in","r",stdin);freopen("hzoi_key.out","w",stdout);
Init();
getchar();getchar();
return 0;
}
void Init(){
scanf("%d%d",&n,&m);m++;
for(int i=1;i<n;i++){
int x,y;scanf("%d%d",&x,&y);
if(!a[x].lch)a[x].lch=y;
else a[x].rch=y;
}
for(int i=1;i<=n;i++)scanf("%d",&a[i].date);
for(int i=1;i<=n;i++){
for(int j=0;j<=m;j++){
ans=max(ans,Dp(i,j)+Dp(1,m-j));
}
}
printf("%d\n",ans);
}