• 最小费用最大流模板


    用zkw模板跑了一下,简直吓尿。。。我的spfa模板跑需要3s,zkw模板才要0.1s。。。。。。。。。。差距太大了。。

    zkw模板还没来得及学,所以将spfa的模板搬上来吧。。

    最小费用最大流,就是每次用最短路算法找出增广路,增广即可。

    spfa未优化版本:

    #include <cstdio>
    #include <cstring>
    #include <queue>
    using namespace std;
    #define CC(a, c) memset(a, c, sizeof(a))
    #define FOR(i,a,n) for(i=a;i<=n;++i)
    
    const int maxn=1000, maxm=1000000, oo=100000000;
    int cap[maxm], cost[maxm], d[maxn], p[maxn];
    int ihead[maxn], inext[maxm], to[maxm], from[maxm], cnt;
    queue<int> q; int vis[maxn];
    
    int min(const int& a, const int& b) { return a < b ? a : b; }
    
    void add(int u, int v, int c, int w) {
    	inext[++cnt]=ihead[u]; ihead[u]=cnt; from[cnt]=u; to[cnt]=v; cap[cnt]=c; cost[cnt]=w;
    	inext[++cnt]=ihead[v]; ihead[v]=cnt; from[cnt]=v; to[cnt]=u; cap[cnt]=0; cost[cnt]=0;
    }
    
    bool spfa(int s, int t, int n) {
    	int i, u;
    	FOR(i, 0, n) d[i]=oo; CC(vis, 0); CC(p, 0);
    	d[s]=0; q.push(s); vis[s]=1;
    	while(!q.empty()) {
    		u=q.front(); q.pop();
    		for(i=ihead[u]; i; i=inext[i]) if(cap[i]>0 && d[u]+cost[i]<d[to[i]]) {
    			d[to[i]]=d[u]+cost[i]; p[to[i]]=i;
    			if(!vis[to[i]]) { vis[to[i]]=1; q.push(to[i]); }
    		}
    		vis[u]=0;
    	}
    	return d[t]!=oo;
    }
    
    void mincost(int s, int t, int n, int& flow, int& mcost) {
    	int u, f;
    	while(spfa(s, t, n)) {
    		for(u=t, f=oo; u!=s; u=from[p[u]]) f=min(f, cap[p[u]]);
    		flow+=f; mcost+=f*d[t];
    		for(u=t; u!=s; u=from[p[u]]) {
    			cap[p[u]]-=f; cap[p[u]^1]+=f; cost[p[u]^1]=-cost[p[u]]; //这里要注意,反向弧的代价要等于正向弧的相反数,这样才能退流
    		}
    	}
    }
    
    void init() {
    	cnt=1; CC(ihead, 0);
    }
    
    int main() {
    	int n, m, u, v, c, w, i;
    	scanf("%d%d", &n, &m);
    	init();
    	for(i=1; i<=m; ++i) {
    		scanf("%d%d%d%d", &u, &v, &c, &w);
    		add(u, v, c, w);
    	}
    	int flow, mcost;
    	mincost(1, n, n, flow, mcost);
    	printf("%d
    ", mcost);
    	return 0;
    }
    
  • 相关阅读:
    大纲锤炼:深入浅出WF4.0
    谈谈技术面试 A Lazy Programmer's Footprint
    推荐一本写给IT项目经理的好书
    UML成长笔记
    写于Silverlight整装待发之际【瞿杰】
    虛擬化、iPad/iPhone相關運用、攝影方面
    (2)经典导读:(webabcd)的Silverlight文章索引
    (1)经典导读:坚持学习WF文章索引[carysun]
    索引测试
    js导航条 二级滑动 模仿块级作用域
  • 原文地址:https://www.cnblogs.com/iwtwiioi/p/3826486.html
Copyright © 2020-2023  润新知