简单的树形背包。。。
Time Limit: 2000MS | Memory Limit: 32768KB | 64bit IO Format: %I64d & %I64u |
[Submit] [Go Back] [Status]
Description
Input
Output
Sample Input
3 2 0 1 0 2 0 3 7 4 2 2 0 1 0 4 2 1 7 1 7 6 2 2 0 0
Sample Output
5 13
Source
[Submit] [Go Back] [Status]
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> using namespace std; const int INF=0x3f3f3f3f; int Adj[220],Size; struct E { int to,next,w; }Edge[44000]; void init() { Size=0; memset(Adj,-1,sizeof(Adj)); } void Add_Edge(int u,int v) { Edge[Size].to=v; Edge[Size].next=Adj[u]; Adj[u]=Size++; } int n,m,dp[220][220]; void dfs(int f,int u) { for(int i=Adj[u];~i;i=Edge[i].next) { int v=Edge[i].to; if(v==f) continue; dfs(u,v); for(int j=m+1;j>1;j--) { for(int k=0;k<j;k++) { dp[u][j]=max(dp[u][j],dp[u][j-k]+dp[v][k]); } } } } int main() { while(scanf("%d%d",&n,&m)!=EOF) { if(n==0&&m==0) break; init(); memset(dp,0,sizeof(dp)); for(int i=1;i<=n;i++) { int a,b; scanf("%d%d",&a,&b); Add_Edge(a,i); dp[i][1]=b; } dfs(0,0); printf("%d\n",dp[0][m+1]); } return 0; }