码迷,mamicode.com
首页 > 其他好文 > 详细

ASC(1)C(树形DP)

时间:2014-10-02 10:21:22      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:acm   asc   

New Year Bonus Grant

Special JudgeTime Limit: 6000/3000MS (Java/Others)Memory Limit: 128000/64000KB (Java/Others)

Problem Description

      All programmers of Mocrosoft software company are organized in a strict subordination hierarchy. Every programmer has exactly one chief, except Bill Hates who is also the head of the company and has no chief.
      Due to the celebration of the new 2003 year, chief accountant of Mocrosoft decided to pay a New Year Bonus Grant of 1000 dollars to some programmers. However being extremely concerned of the company wealth she would like to designate the least possible amount of money for these grants. On the other hand she didn’t want to be accused of being too greedy or of giving preferences to some programmers. To do this, she developed the following scheme of grants appointment:
? Each programmer may either assign a grant to one of his subordinates or have a grant assigned to him by his chief or none of the above.
? No programmer can simultaneously receive a grant and assign a grant to one of his subordinates.
? No programmer can assign a grant to more than one of his subordinates
      The scheme seemed to be designed perfectly — nobody would like to assign a grant to anybody since in this case he himself would not receive money. But programmers somehow discovered the plan of chief accountant and decided to make a trick to get the most money possible and share them fairly afterwards. The idea was to make such grant assignments that the total amount of grant money received is maximum possible.
      You were selected to write the program which will find the optimal grants appointment.

Input

      The first line of the input file contains integer N — the number of programmers in Mocrosoft company (2 ≤ N ≤ 500 000). Each programmer is assigned his unique identifier — integer number ranging from 1 to N . Bill Hates has number 1 and each programmer has the number greater then the number of his chief. The second line of the input file contains N ? 1 integers, i-th of which being the number of the chief of the worker whose number is (i + 1).

Output

      On the first line of the output file print the maximum possible amount of money workers can get. On the second line output the numbers of programmers that will receive grant in ascending order.

Sample Input

4
1 1 2

Sample Output

2000
3 4

题意:给了一棵树,求出最大的匹配,每个点要么与父亲匹配,要么与一个孩子匹配,要么不匹配

思路:n=500000,二分图匹配算法显然不能做

            因为是一棵树,果断可以树形DP

           dp[u][0]表示该点不与父亲匹配,其子树的最大匹配数

           dp[u][1]表示该点与其父亲匹配,其子树的最大匹配数

           转移很容易想到,dp[u][1]只能由dp[v][0]累加得到,其中v为u的孩子,因为u与其父亲匹配以后就不能再与任何孩子匹配

          dp[u][0]可以初始化为dp[u][1]表示u即不与父亲匹配也不与孩子匹配

          然后再用dp[v][1]去最大化dp[u][0]

          最后还要求输出具体方案,直接按树的层次打印路径即可

ASC(1)C(树形DP)

标签:acm   asc   

原文地址:http://blog.csdn.net/cq_phqg/article/details/39727571

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!