POJ 2342 树形DP入门题

有一个大学的庆典晚会,想邀请一些在大学任职的人来参加,每个人有自己的搞笑值,但是现在遇到一个问题就是如果两个人之间有直接的上下级关系,那么他们中只能有一个来参加,求请来一部分人之后,搞笑值的最大是多少。

树形DP入门题。

DP部分:

dp[i][0]表示职员i不来参加party,以i为根的子树的最大搞笑值,

dp[i][1]表示职员i来参加party,以i为根的子树的最大搞笑值。

转移方程:

dp[cur][1]+=dp[next][0];

dp[cur][0]+=Max(dp[next][1],dp[next][0]);

#include "stdio.h"
#include "string.h"
#include "vector"
using namespace std;

struct node
{
    int fa;
    vector<int>child;
}data[6010];
int dp[6010][2],vis[6010];
int Max(int a,int b)
{
    if (a<b) return b;else return a;
}

void dfs(int cur)
{
    int i,next;
    vis[cur]=1;
    for (i=0;i<data[cur].child.size();i++)
    {
        next=data[cur].child[i];
        if (vis[next]==0)
        dfs(next);
        dp[cur][1]+=dp[next][0];
        dp[cur][0]+=Max(dp[next][1],dp[next][0]);
    }
}
int main()
{
    int n,i,a,b;
    while (scanf("%d",&n)!=EOF)
    {
        memset(dp,0,sizeof(dp));
        memset(data,0,sizeof(data));
        memset(vis,0,sizeof(vis));

        for (i=1;i<=n;i++)
            scanf("%d",&dp[i][1]);

        while(scanf("%d%d",&a,&b))
        {
            if (a+b==0) break;
            data[a].fa=b;
            data[b].child.push_back(a);
        }

        for (i=1;i<=n;i++)
            if (data[i].fa==0)
            {
                dfs(i);
                break;
            }
        printf("%d\n",Max(dp[i][1],dp[i][0]));

    }
    return 0;
}

POJ 2342 树形DP入门题

时间: 2024-10-11 15:53:01

POJ 2342 树形DP入门题的相关文章

POJ 3342 树形DP入门题

题目意思和POJ2342一样,只是多加了一个条件,如果最大方案数唯一,输出Yes,不唯一输出No dp的是时候多加一个变量记录答案是否唯一即可 #include "stdio.h" #include "string.h" #include "vector" using namespace std; struct node { int fa; vector<int>child; }data[210]; struct comp { int

POJ 1947 树形DP入门题

给出N个点,N-1个关系,建出树形图,问最少减去几个边能得到节点数为P的树.典型树形DP题 dp[cur][j] :记录cur结点,要得到一棵j个节点的子树去掉的最少边数 转移方程用的背包的思想 对当前树的每一个子树进行计算 砍掉此子树:   dp[cur][j]=dp[cur][j]+1; 不砍掉:           for (l=0;l<=j;l++)  dp[cur][j]=Min(dp[cur][j],dp[cur][l]+dp[next][j-l]); 枚举从该树中留l个节点其他由新

poj 2342树形dp板子题1

http://poj.org/problem?id=2342 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<queue> #include<vector> using namespace std; inline int read(){ int sum=0,x=1; char ch=getchar(); while(c

poj 2342(树形DP)

Anniversary party Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 6062   Accepted: 3490 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

poj 1463 树形dp入门

很简单的树形dp题目,转移方程是: dp[u][0] += dp[v][1];     dp[u][1] += min( dp[v][0], dp[v][1] ); 其中u是v的父亲节点. 1 #include <algorithm> 2 #include <iostream> 3 #include <cstring> 4 #include <cstdio> 5 using namespace std; 6 7 const int N = 1500; 8 b

POJ 2342 Anniversary party (树形dp 入门题)

Anniversary party Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 4810   Accepted: 2724 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

[ACM] POJ 2342 Anniversary party (树形DP入门题)

Anniversary party Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 4410   Accepted: 2496 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

HDU1520 Anniversary party(树形dp入门题)

题意: 给定一棵关系树,每个节点有个权值,子节点和父节点不能同时选,问最后能选的最大价值是多少? 思路: dp[i][1]表示选,dp[i][0]表示不选 则状态转移方程为: dp[i][1]+=dp[j][0]; dp[i][0]+=max(dp[j][1],dp[j][0]); AC代码: #include <iostream> #include <cstdio> #include <cstring> #include <string> #include

[poj2342]Anniversary party树形dp入门

题意:选出不含直接上下司关系的最大价值. 解题关键:树形dp入门题,注意怎么找出根节点,运用了并查集的思想. 转移方程:dp[i][1]+=dp[j][0];/i是j的子树 dp[i][0]+=max(dp[j][0],dp[j][1]); 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 #include<cstdlib> 5 #include<iostream> 6