博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1853 MCMF
阅读量:6637 次
发布时间:2019-06-25

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

题意:给定一个有向带权图,使得每一个点都在一个环上,而且权之和最小。

分析:每个点在一个环上,入度 = 出度 = 1,拆点入点,出点,s到所有入点全部满载的最小费用MCMF;

#include 
using namespace std;const int maxn = 105*2;const int INF = 0x3f3f3f3f;typedef pair
pii;struct Edge{ int from, to, cap, flow, cost;};struct MCMF{ int n, m; vector
edges; vector
G[maxn]; bool inq[maxn]; // 是否在队列中 int d[maxn]; // Bellman-Ford int p[maxn]; // 上一条弧 int a[maxn]; // 可改进量 void init(int n) { this->n = n; for(int i = 0; i < n; i++) G[i].clear(); edges.clear(); } void AddEdge(int from, int to, int cap, int cost) { edges.push_back((Edge) { from, to, cap, 0, cost }); edges.push_back((Edge) { to, from, 0, 0, -cost }); m = edges.size(); G[from].push_back(m-2); G[to].push_back(m-1); } bool BellmanFord(int s, int t, int &flow, long long& cost) { memset(inq,0,sizeof(inq)); for(int i=0;i
Q; Q.push(s); while(!Q.empty()) { int u = Q.front(); Q.pop(); inq[u] = false; for(int i = 0; i < G[u].size(); i++) { Edge& e = edges[G[u][i]]; if(e.cap > e.flow && d[e.to] > d[u] + e.cost) { d[e.to] = d[u] + e.cost; p[e.to] = G[u][i]; a[e.to] = min(a[u], e.cap - e.flow); if(!inq[e.to]) { Q.push(e.to); inq[e.to] = true; } } } } if(d[t] == INF) return false; //s-t 不连通,失败退出 flow += a[t]; cost += (long long)d[t] * (long long)a[t]; int u = t; while(u != s) { edges[p[u]].flow += a[t]; edges[p[u]^1].flow -= a[t]; u = edges[p[u]].from; } return true; } pair
Mincost(int s, int t) { long long cost = 0; int flow = 0; while(BellmanFord(s, t, flow, cost)); return pair
{flow,cost}; }}sol;int main(){ int n,m; while(scanf("%d%d",&n,&m)!=EOF) { int s = 0,t=2*n+1; sol.init(2*n+2); for(int i=1;i<=n;i++) sol.AddEdge(s,i,1,0); for(int i=n+1;i<=2*n;i++) sol.AddEdge(i,t,1,0); for(int i=0;i

 

转载于:https://www.cnblogs.com/TreeDream/p/7283629.html

你可能感兴趣的文章
iOS 分类思想(2)
查看>>
ramdisk的解释
查看>>
linux服务器集群运维经验
查看>>
MyISAM Key Cache详解及优化
查看>>
我所认识的PDF文件处理工具软件---PDF Automation Server(PAS)
查看>>
HDS HDIM:数据保护以管理为核心
查看>>
Hibernate关联映射之延迟加载
查看>>
我的一次华为虚拟化搭建记录:(一)、关于华为虚拟化的架构
查看>>
我的友情链接
查看>>
Android不同版本下Notification创建方法
查看>>
软件焦油坑之乱象丛生
查看>>
redhat linux卸载自带的Java1.4.2安装JDK6
查看>>
RookeyFrame Bug 表单管理 -> 查看表单 ->编辑字段页面 JS报错
查看>>
DataTable CAST 成集合后,进行自定义排序再转换回DataTable
查看>>
PHP读取txt文件的内容并赋值给数组的代码
查看>>
Centos7网络正常,但使用yum提示安装源无法连接
查看>>
服务程序应用的安装方法汇总
查看>>
【ionic App问题总结系列】ionic 如何更新app版本
查看>>
twitter storm源码走读之3--topology提交过程分析
查看>>
拥抱新技术的一点思考
查看>>