zoukankan      html  css  js  c++  java
  • HDU1520 Anniversary party 树形DP基础

    There is going to be a party to celebrate the 80-th Anniversary of the Ural State University. The University has a hierarchical structure of employees. It means that the supervisor relation forms a tree rooted at the rector V. E. Tretyakov. In order to make the party funny for every one, the rector does not want both an employee and his or her immediate supervisor to be present. The personnel office has evaluated conviviality of each employee, so everyone has some number (rating) attached to him or her. Your task is to make a list of guests with the maximal possible sum of guests' conviviality ratings. 

    InputEmployees are numbered from 1 to N. A first line of input contains a number N. 1 <= N <= 6 000. Each of the subsequent N lines contains the conviviality rating of the corresponding employee. Conviviality rating is an integer number in a range from -128 to 127. After that go T lines that describe a supervisor relation tree. Each line of the tree specification has the form: 
    L K 
    It means that the K-th employee is an immediate supervisor of the L-th employee. Input is ended with the line 
    0 0OutputOutput should contain the maximal sum of guests' ratings. 
    Sample Input

    7
    1
    1
    1
    1
    1
    1
    1
    1 3
    2 3
    6 4
    7 4
    4 5
    3 5
    0 0

    Sample Output

    5

    水题一道,晚安。

    #include<cstdio>
    #include<cstdlib>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #include<memory>
    using namespace std;
    const int maxn=20000;
    
    int vis[maxn],V[maxn],ans,cnt,dp[maxn][2];
    int Laxt[maxn],Next[maxn],To[maxn],ru[maxn];
    
    void add(int u,int v){
        Next[++cnt]=Laxt[u];
        Laxt[u]=cnt;
        To[cnt]=v;
    }
    
    int dfs(int u)
    {
        vis[u]=1;
        dp[u][1]=V[u];
        for(int i=Laxt[u];i;i=Next[i]){
             int v=To[i];
             if(!vis[v]){
                dfs(v);
                dp[u][1]+=dp[v][0];
                dp[u][0]+=max(dp[v][0],dp[v][1]);
             }
        }
    }
    
    int main()
    {
        int i,j,k,n,u,v;
        while(~scanf("%d",&n)){
            cnt=0;ans=0;
            memset(Laxt,0,sizeof(Laxt));
            memset(dp,0,sizeof(dp));
            memset(ru,0,sizeof(ru));
            memset(vis,0,sizeof(vis));
            for(i=1;i<=n;i++) scanf("%d",&V[i]);
            for(;;){
               scanf("%d%d",&u,&v);
               if(u==0&&v==0) break;
               add(v,u);
               ru[u]++;
            } 
            for(i=1;i<=n;i++) {
              if(ru[i]==0) {
                  dfs(i);
                  ans+=max(dp[i][1],dp[i][0]);//防止多棵树 
              }
             } 
            printf("%d
    ",ans);
        }
        return 0;
    }
  • 相关阅读:
    Vue路由重定向
    Vue使用rules对表单字段进行校验
    CSS Flex弹性布局实现Div
    Leetcode5 最长回文子串
    Java中char与String的相互转换
    [剑指offer] 替换空格
    Leetode最长回文串
    JavaScript 常用正则表达式集锦
    JavaScript 函数节流
    JavaScript target 与 currentTarget 区别
  • 原文地址:https://www.cnblogs.com/hua-dong/p/7775112.html
Copyright © 2011-2022 走看看