zoukankan      html  css  js  c++  java
  • Anniversary party(树形dp入门)

    Anniversary party

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 3043    Accepted Submission(s): 1374


    Problem Description
    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.
     
    Input
    Employees 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 0
     
    Output
    Output 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
     
    Source
     
    Recommend
    linle
     
    思路:当前节点为i,dp[i][0]为i不出席时的最大快乐值,dp[i][1]为i出席时的最大快乐值。i的儿子集合(直接下属集合)为son={s1,s2,···},则有
    (1)求解dp[i][0]:
    for each si in son
        dp[i][0] += max(dp[si][0], dp[si][1]);
    解释:i不出席时,i的儿子既可以出席也可以不出席,取快乐值最大的方案。
    (2)求解dp[i][1]:
    for each si in son
        dp[i][1] += dp[i][0];
    解释:i出席,则i的所有儿子只能不出席。
     
    AC Code:
     1 #include <iostream>
     2 #include <vector>
     3 #include <cstdio>
     4 using namespace std;
     5 
     6 const int MAXN = 6002;
     7 struct maxVal
     8 {
     9     int y, x;
    10 }dp[MAXN];
    11 //x-不包括自身时最大快乐值;y-包括自身时最大快乐值
    12 vector<int> gra[MAXN];  //邻接表
    13 bool isRoot[MAXN];  //标记是否根节点
    14 
    15 int Max(const int& a, const int& b)
    16 {
    17     return a > b ? a : b;
    18 }
    19 
    20 maxVal getMax(int v)  //a-不包括自己,b-包括自己
    21 {
    22     if(gra[v].empty())
    23     {
    24         return dp[v];
    25     }
    26     vector<int>::iterator it = gra[v].begin();
    27     for(; it != gra[v].end(); it++)
    28     {
    29         maxVal val = getMax(*it);
    30         dp[v].x += Max(val.x, val.y);
    31         dp[v].y += val.x;
    32     }
    33     return dp[v];
    34 }
    35 
    36 int main()
    37 {
    38     int n, root;  //root-根节点
    39     while(scanf("%d", &n) != EOF)
    40     {
    41         for(int i = 1; i <= n; i++)
    42         {
    43             scanf("%d", &dp[i].y);
    44             dp[i].x = 0;
    45             isRoot[i] = true;
    46             gra[i].clear();
    47         }
    48         int l, k;
    49         while(scanf("%d %d", &l, &k) && l)
    50         {
    51             gra[k].push_back(l);
    52             isRoot[l] = false;
    53         }
    54         for(int i = 1; i <= n; i++)
    55             if(isRoot[i] == true)
    56             {
    57                 root = i;
    58                 break;
    59             }
    60         maxVal ans = getMax(root);
    61         printf("%d
    ", Max(ans.x, ans.y));
    62     }
    63     return 0;
    64 }
  • 相关阅读:
    [AngularFire 2] Protect Write Access Using Security Rules
    [Ramda] Handle Branching Logic with Ramda's Conditional Functions
    [Angular2 Router] Setup page title with Router events
    [HTML] Creating visual skip links in HTML and CSS
    [AngularFire2] Signup and logout
    [AngularFire2] Building an Authentication Observable Data Service
    [Swift] Add Scroll View
    [Swift] Storyboard outlet and action
    [AngularFire2] Auth with Firebase auth -- email
    网站优化与Cdn文件传输服务
  • 原文地址:https://www.cnblogs.com/cszlg/p/3204326.html
Copyright © 2011-2022 走看看