博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 1561 The more, The Better(树形dp入门)
阅读量:5224 次
发布时间:2019-06-14

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

http://acm.hdu.edu.cn/showproblem.php?pid=1561

 

树形dp:

 

1 #include
2 #include
3 #include
4 using namespace std; 5 6 const int mx=222; 7 int dp[mx][mx]; 8 vector
g[mx]; 9 10 void dfs(int x,int m)11 {12 if (m==0) return ;13 for (int i=0;i
=1;j--)18 {19 int v=j;20 for(int k=1;k
>n>>m)32 {33 memset(dp,0,sizeof(dp));34 if (!n&&!m) return 0;35 int a,i;36 for (i=0;i<=n;i++) g[i].clear();37 for (i=1;i<=n;i++)38 {39 cin>>a>>dp[i][1];40 g[a].push_back(i);41 }42 dfs(0,m+1);43 cout<
<

 

转载于:https://www.cnblogs.com/pblr/p/5254246.html

你可能感兴趣的文章
解决miner.start() 返回null
查看>>
关于MFC中窗口的销毁
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
js += 含义(小知识)
查看>>
B2321 [BeiJing2011集训]星器 数学&&物理
查看>>
201571030319 四则运算
查看>>