博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU - 1054 Strategic Game(二分图最小点覆盖/树形dp)
阅读量:5284 次
发布时间:2019-06-14

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

d.一颗树,选最少的点覆盖所有边

s.

1.可以转成二分图的最小点覆盖来做。不过转换后要把匹配数除以2,这个待细看。

2.也可以用树形dp

c.匈牙利算法(邻接表,用vector实现):

/*用STL中的vector建立邻接表实现匈牙利算法效率比较高处理点比较多的效率很高。1500的点都没有问题*/#include
#include
#include
#include
#include
using namespace std;const int MAXN=1505;//这个值要超过两边个数的较大者,因为有linkerint linker[MAXN];bool used[MAXN];vector
G[MAXN];int uN;bool dfs(int u){ int sz=G[u].size(); for(int i=0; i
View Code

 

c2.树形dp

/*HDU 1054G++ 312ms 560K*/#include
#include
#include
#include
using namespace std;const int MAXN=1510;struct Node{ int father,brother,child; int yes;//该结点放置 int no;//该结点不放置}t[MAXN];void DFS(int x){ int child=t[x].child; while(child) { DFS(child); t[x].yes+=min(t[child].yes,t[child].no); //父亲结点放置了,儿子结点可以放置也可以不放置 t[x].no+=t[child].yes; //父亲结点没有放置,儿子结点必须放置 child=t[child].brother; }}bool used[MAXN];int main(){ //freopen("in.txt","r",stdin); //freopen("out.txt","w",stdout); int n; int root,k,v; while(scanf("%d",&n)!=EOF) { memset(used,false,sizeof(used)); int Root;//根结点 for(int i=0;i
View Code

 

转载于:https://www.cnblogs.com/bofengyu/p/5276157.html

你可能感兴趣的文章
Learning Python 009 dict(字典)和 set
查看>>
JavaScript中随着鼠标拖拽而移动的块
查看>>
HDU 1021 一道水题
查看>>
The operation couldn’t be completed. (LaunchServicesError error 0.)
查看>>
php每天一题:strlen()与mb_strlen()的作用分别是什么
查看>>
工作中收集JSCRIPT代码之(下拉框篇)
查看>>
《转载》POI导出excel日期格式
查看>>
code异常处理
查看>>
git - 搭建最简单的git server
查看>>
会话控制
查看>>
推荐一款UI设计软件Balsamiq Mockups
查看>>
Linux crontab 命令格式与详细例子
查看>>
百度地图Api进阶教程-地图鼠标左右键操作实例和鼠标样式6.html
查看>>
游标使用
查看>>
LLBL Gen Pro 设计器使用指南
查看>>
SetCapture() & ReleaseCapture() 捕获窗口外的【松开左键事件】: WM_LBUTTONUP
查看>>
Android 设置界面的圆角选项
查看>>
百度地图api服务端根据经纬度得到地址
查看>>
根据xml生成相应的对象类
查看>>
Android StageFrightMediaScanner源码解析
查看>>