• POJ2486 Apple Tree


    Time Limit: 1000MS   Memory Limit: 65536KB   64bit IO Format: %lld & %llu

    Description

    Wshxzt is a lovely girl. She likes apple very much. One day HX takes her to an apple tree. There are N nodes in the tree. Each node has an amount of apples. Wshxzt starts her happy trip at one node. She can eat up all the apples in the nodes she reaches. HX is a kind guy. He knows that eating too many can make the lovely girl become fat. So he doesn’t allow Wshxzt to go more than K steps in the tree. It costs one step when she goes from one node to another adjacent node. Wshxzt likes apple very much. So she wants to eat as many as she can. Can you tell how many apples she can eat in at most K steps.

    Input

    There are several test cases in the input 
    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.

    Output

    For each test case, output the maximal numbers of apples Wshxzt can eat at a line.

    Sample Input

    2 1 
    0 11
    1 2
    3 2
    0 1 2
    1 2
    1 3
    

    Sample Output

    11
    2
    

    Source

    POJ Contest,Author:magicpig@ZSU

    若当前走到了结点x,已经走了y步,除了走向子树外,还有另一选择:返回父节点,去父节点的其他子树。

    所以比一般的树状DP多加一维状态,记录有没有返回当前结点。0表示要回,1表示不回。

    懒得写分析了,复制一份233

    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子树返回,同样有多出两步

    by键盘上的舞者

    我实际写的时候0和1与上面说的相反。

     1 /*by SilverN*/
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<cstring>
     5 #include<cstdio>
     6 #include<cmath>
     7 using namespace std;
     8 const int mxn=240;
     9 struct edge{
    10     int v;
    11     int nxt;
    12 }e[mxn];
    13 int hd[mxn],mct=0;
    14 void add_edge(int u,int v){
    15     e[++mct].v=v;e[mct].nxt=hd[u];hd[u]=mct;
    16     return;
    17 }
    18 int f[mxn][mxn][2];//第三维0表示不返回根节点,1表示返回根节点 
    19 int w[mxn];
    20 int n,m;
    21 void dp(int u,int fa){
    22     int i,j,k;
    23     for(i=hd[u];i;i=e[i].nxt){
    24         int v=e[i].v;
    25         if(v==fa)continue;
    26         dp(v,u);
    27         for(j=m;j;--j){
    28             for(k=1;k<=j;++k){
    29                 f[u][j][1]=max(f[u][j][1],f[u][j-k][1]+f[v][k-2][1]);
    30                 f[u][j][0]=max(f[u][j][0],f[u][j-k][1]+f[v][k-1][0]);
    31                 f[u][j][0]=max(f[u][j][0],f[u][j-k][0]+f[v][k-2][1]);
    32             }
    33         }
    34     }
    35     return;
    36 }
    37 int main(){
    38     while(scanf("%d%d",&n,&m)!=EOF){
    39         memset(e,0,sizeof e);
    40         memset(hd,0,sizeof hd);
    41         memset(f,0,sizeof 0);
    42         mct=0;
    43         int i,j;
    44         for(i=1;i<=n;i++){
    45             scanf("%d",&w[i]);
    46             for(j=0;j<=m;j++){
    47                 f[i][j][0]=f[i][j][1]=w[i];
    48             }
    49         }
    50         int u,v;
    51         for(i=1;i<n;i++){
    52             scanf("%d%d",&u,&v);
    53             add_edge(u,v);
    54             add_edge(v,u);
    55         }
    56         dp(1,0);
    57         printf("%d
    ",f[1][m][0]);
    58     }
    59     return 0;
    60 }
  • 相关阅读:
    ajax参数解析
    利用HTML5新特性改变浏览器地址后不刷新页面
    JsDoc脚本注释文档生成
    sublime中配置Java 环境
    使用Node.js+Socket.IO搭建WebSocket实时应用【转载】
    js实现前端下载文件
    android JB3上怎样更改Camera拍照的quality
    关于_ENV(lua5.2 or later)
    hadoop-2.7.1安装笔记
    JavaScript的类及面向对象编程
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/5918417.html
Copyright © 2020-2023  润新知