博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj 2135 Farm Tour 最小费最大流
阅读量:5016 次
发布时间:2019-06-12

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

inf开太小错了好久……下次还是要用0x7fffffff

#include
#include
#include
#include
#include
using namespace std;const int N=5024;const int inf=0x7fffffff;struct Edge{ int from,to,cap,flow,cost;};vector
edges;vector
G[N];int n,m;int inq[N],p[N],d[N],a[N];void AddEdge(int from, int to,int cap, int cost){ Edge tp; tp.from=from,tp.to=to,tp.cap=cap,tp.flow=0,tp.cost=cost; edges.push_back(tp); tp.from=to,tp.to=from,tp.cap=0,tp.flow=0,tp.cost=-cost; edges.push_back(tp); int g=edges.size(); G[from].push_back(g-2); G[to].push_back(g-1);}int BellmanFord(int s,int t,int &flow, int &cost){ int i,j,u; for(i=0; i<=n+1; i++) d[i]=inf; memset(inq,0,sizeof(inq)); d[s]=0; inq[s]=1; p[s]=0; a[s]=inf; queue
Q; Q.push(s); while(!Q.empty()) { u=Q.front(); Q.pop(); inq[u]=0; for(i=0; i
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]=1; } } } } if(d[t]==inf) return 0; flow+=a[t]; cost+=d[t]*a[t]; u=t; while(u!=0) { edges[p[u]].flow+=a[t]; edges[p[u]^1].flow-=a[t]; u=edges[p[u]].from; } return 1;}int Mincost(int s,int t){ int flow=0,cost=0; while(BellmanFord(s,t,flow,cost)); return cost;}int main(){ int i,u,v,c; while(~scanf("%d%d",&n,&m)) { for(i=0; i<=n+1; i++) G[i].clear(); edges.clear(); for(i=0;i

版权声明:本文为博主原创文章,未经博主允许不得转载。http://xiang578.top/

转载于:https://www.cnblogs.com/xryz/p/4847829.html

你可能感兴趣的文章
前端开发工程师如何在2013年里提升自己【转】--2016已更新升级很多何去何从?...
查看>>
markdown语法测试集合
查看>>
running and coding
查看>>
实现QQ第三方登录、网站接入
查看>>
HTML CSS 层叠样式表 三
查看>>
Qt pro pri 文件学习1
查看>>
软件工程概论第六周学习进度条
查看>>
[思路]导入导出功能
查看>>
【iOS】UICollectionView自己定义Layout之蜂窝布局
查看>>
golang——(strings包)常用字符串操作函数
查看>>
发布aar到jcenter
查看>>
跨浏览器问题的五种解决方案
查看>>
XPath定位时,使用文本的方法小技巧。
查看>>
安装pandas报错(AttributeError: 'module' object has no attribute 'main')
查看>>
ch02 fundamental definition 01
查看>>
JSON解析
查看>>
Position is everything?(css定位学习的一些心得)(一)
查看>>
如何提高编程水平
查看>>
Jquery Uploadify3.21.与2.1版本 使用中存在的问题--记录三
查看>>
Linux查看进程的内存占用情况 分类: ubuntu ...
查看>>