博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
皇宫看守(树形dp)
阅读量:5214 次
发布时间:2019-06-14

本文共 653 字,大约阅读时间需要 2 分钟。

#include
#include
#include
using namespace std;int n,head[2005],dp[2005][3],fa[2005],w[2005],cnt;struct edge{ int v,next;}e[2005];inline void add(int u,int v){ e[++cnt].v=v; e[cnt].next=head[u]; head[u]=cnt;}inline int root(int v){ if(fa[v]==-1)return v; return root(fa[v]);}//0:自无,父有 1:自有 2:自无父无,子有的有 inline void guess(int u){ int minn=2147483647,k=0; for(int i=head[u];i!=-1;i=e[i].next){ int v=e[i].v; guess(v); dp[u][1]+=min(dp[v][0],dp[v][1]); dp[u][0]+=min(dp[v][1],dp[v][2]); if(dp[v][1]

转载于:https://www.cnblogs.com/Y15BeTa/p/11269059.html

你可能感兴趣的文章
[LintCode] 462 Total Occurrence of Target
查看>>
springboot---redis缓存的使用
查看>>
架构图-模型
查看>>
sql常见面试题
查看>>
jQuery总结第一天
查看>>
Java -- Swing 组件使用
查看>>
Software--Architecture--DesignPattern IoC, Factory Method, Source Locator
查看>>
poj1936---subsequence(判断子串)
查看>>
黑马程序员_Java基础枚举类型
查看>>
【redis4 】
查看>>
[ python ] 练习作业 - 2
查看>>
一位90后程序员的自述:如何从年薪3w到30w!
查看>>
HDU-1242-Rescue
查看>>
在.net core上使用Entity FramWork(Db first)
查看>>
Eclipse中如何开启断言(Assert),方法有二
查看>>
System.Net.WebException: 无法显示错误消息,原因是无法找到包含此错误消息的可选资源程序集...
查看>>
压缩图片 待验证
查看>>
UIImage 和 iOS 图片压缩UIImage / UIImageVIew
查看>>
MongoDB的数据库、集合的基本操作
查看>>
ajax向后台传递数组
查看>>