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

poj 2342 树形dp

时间:2015-02-18 14:04:51      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

//再水一发树形dp

 1 #include "iostream"
 2 #include "cstdio"
 3 #include "cstring"
 4 #include "algorithm"
 5 using namespace std;
 6 int dp[6010][2];
 7 bool vis[6010];
 8 int tot, first[6010], next[6010], to[6010];
 9 int n, ans[6010];
10 void dfs(int root)
11 {
12     vis[root] = 1;
13     dp[root][1] = ans[root];
14     int edge;
15     for(edge = first[root]; edge; edge = next[edge]) {
16         dfs(to[edge]);
17         dp[root][0] += max(dp[to[edge]][0], dp[to[edge]][1]);
18         dp[root][1] += dp[to[edge]][0];
19     }
20 }
21 
22 int main()
23 {
24     int i;
25     scanf("%d", &n);
26     for(i = 1; i <= n; ++i)
27         scanf("%d", &ans[i]);
28     int b, a;
29     tot = 0;
30     int root = n * (n + 1);
31     root >>= 1;
32     while(scanf("%d%d", &b, &a) && (a || b)) {
33         next[++tot] = first[a];
34         first[a] = tot;
35         to[tot] = b;
36         root -= b;
37     }
38     dfs(root);
39     printf("%d\n", max(dp[root][0], dp[root][1]));
40 }

 

poj 2342 树形dp

标签:

原文地址:http://www.cnblogs.com/AC-Phoenix/p/4295738.html

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