HDU 4616

HDU 4616

题意:给出一棵树,每个节点有一个正整数值,可能有1个或者没有炸弹,要求你找出一条单向路,在碰到炸弹数量不超过C的情况下取得的值尽可能大,起点任意,需要注意的是,碰到C个炸弹之后,立刻结束,哪怕还有没有炸弹的节点都不能走了,因为一个小BUG,多校结束之后20分钟才A了,太可惜了,希望错误不要再犯!

思路:典型树形DP,大致做法差不多,定义DP[ I ][ J ][ K ],以I节点为跟的树走过J个炸弹以K为方向的最优解,方向有入跟出两种,处理下当炸弹数目等于C时候的情况就可以了。

#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include

using namespace std;

#define N 100100
#define L(x) x<<1
#define R(x) x<<1|1
#define M(x,y) (x + y)>>1
#define MOD 1000000007
#define MODD 1000000006
#define inf 0x7fffffff
#define llinf 0x7fffffffffffffff
#define LL __int64

struct edge
{
    LL u,v,next;
}s[N*2];

struct st
{
    LL num;
    LL c;
}a[N];

LL cnt,visit[N];
LL mark[N];
LL dp[N][4][2];
LL marks[4],ans,n,m;

void addedge(LL a,LL b)
{
    s[cnt].u = a;
    s[cnt].v = b;
    s[cnt].next = visit[a];
    visit[a] = cnt++;
    s[cnt].u = b;
    s[cnt].v = a;
    s[cnt].next = visit[b];
    visit[b] = cnt++;
}

void dfs(LL x)
{
    mark[x] = 1;
    dp[x][a[x].c][0] = dp[x][a[x].c][1] = a[x].num;
    for(LL i = visit[x];i != -1;i = s[i].next)
    {
        if(mark[s[i].v] == 1)
            continue;
        dfs(s[i].v);
        for(LL j = 0;j <= m;j++)
        {
            for(LL k = 0;k + j <= m;k++)
            {
                if(j != m)
                {
                //    cout<<"###"<


你可能感兴趣的:(ACM)