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;
    }
  • 相关阅读:
    git删除目录,且保留本地的
    gitpush 免密码
    git常用操作
    ubuntu安装Nodejs
    ubuntu如何配置samba
    用AI将png转成svg做字符图标教程
    windows server 2012设置远程连接断开后自动注销
    windows 2012执行计划任务错误:操作员或系统管理员拒绝了请求(0x800710E0)
    删除节点
    代理 XP”组件已作为此服务器安全配置的一部分被关闭。系统管理员可以使用 sp_configure 来启用“代理 XP”。
  • 原文地址:https://www.cnblogs.com/hua-dong/p/7775112.html
Copyright © 2011-2022 走看看