POJ2135Farm Tour(最小费用最大流模板)

题目链接:http://poj.org/problem?id=2135

题意:农场主想从1到n,然后从n到1,每条边最多走一次,不能走重复的路,问最短距离是多少。

建图:取超级源点s,并与房子连一条边,容量为2,费用为0;取barn与超级汇点 t 的边的容量为2,费用为0

房子与barn的费用为距离,容量为1

#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <queue>
#include <algorithm>
const int maxn = 3010;
const int maxm = 80000;
const int inf = 1e8;
#define MIN INT_MIN
#define MAX 1e6
#define LL long long
#define init(a) memset(a,0,sizeof(a))
#define FOR(i,a,b) for(int i = a;i<b;i++)
#define max(a,b) (a>b)?(a):(b)
#define min(a,b) (a>b)?(b):(a)
using namespace std;
struct node{
    int u,v,w,cap,next;
}edge[maxm];
int head[maxn],dis[maxn],pre[maxn];
int cnt,n;
bool vis[maxn];
void add(int u,int v,int w,int cap)
{
    edge[cnt].u = u;
    edge[cnt].v = v;
    edge[cnt].w = w;
    edge[cnt].cap = cap;
    edge[cnt].next = head[u];
    head[u] = cnt++;

    edge[cnt].u = v;
    edge[cnt].v = u;
    edge[cnt].w = -w;
    edge[cnt].cap = 0;
    edge[cnt].next = head[v];
    head[v] = cnt++;
}
void initt()
{
    cnt = 0;
    memset(head,-1,sizeof(head));
}
bool SPFA(int s,int t)
{
    queue<int>q;
    while(q.empty()==false) q.pop();

    q.push(s);

    init(vis);
    memset(pre,-1,sizeof(pre));

    FOR(i,s,t+1)
    dis[i] = inf;
    vis[s] = 1;
    dis[s] = 0;

    while(!q.empty())
    {
        int uu = q.front();
        q.pop();
        vis[uu] = 0;
        for(int i = head[uu];i!=-1;i = edge[i].next)
        {
            if(edge[i].cap && dis[edge[i].v] > dis[uu] + edge[i].w)//找最小费用
            {
                dis[edge[i].v] = dis[uu] + edge[i].w;
                pre[edge[i].v] = i;//记录路径
                if(!vis[edge[i].v])
                {
                    vis[edge[i].v] = 1;

                q.push(edge[i].v);
                }

            }
        }
    }
    if(dis[t]!=inf)
        return 1;
    return 0;

}
int MinCostMaxFlow(int s,int t)
{
    int flow = 0,cost = 0;//总流量、总费用
    while(SPFA(s,t))
    {
        int df = inf;
        for(int i = pre[t];i!=-1;i=pre[edge[i].u])
        {
            if(df > edge[i].cap)
                df = edge[i].cap;
        }
        flow += df;//这条路径的流量
        for(int i = pre[t];i!=-1;i=pre[edge[i].u])//更新流量
        {
            edge[i].cap -= df;
            edge[i^1].cap += df;
        }
        cost += df*dis[t];//单位费用诚意流量
    }
    return cost;
}
int main()
{
    int u,v,w,m;
    while(scanf("%d%d",&n,&m)!=EOF)
    {
        initt();
        FOR(i,0,m)
        {
            scanf("%d%d%d",&u,&v,&w);
            add(u,v,w,1);//无向边,费用w,容量1
            add(v,u,w,1);
        }
        add(0,1,0,2);
        add(n,n+1,0,2);
        int ans = MinCostMaxFlow(0,n+1);
        cout<<ans<<endl;
    }
    return 0;
}

POJ2135Farm Tour(最小费用最大流模板),布布扣,bubuko.com

时间: 2024-10-26 05:59:42

POJ2135Farm Tour(最小费用最大流模板)的相关文章

Farm Tour(最小费用最大流模板)

Farm Tour Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 18150   Accepted: 7023 Description When FJ's friends visit him on the farm, he likes to show them around. His farm comprises N (1 <= N <= 1000) fields numbered 1..N, the first of

poj 2135 Farm Tour (最小费用最大流模板)

网络流的费用: 在实际应用中,与网络流有关的问题,不仅涉及流量,而且还有费用的因素.网络的每一条边(v,w)除了给定容量cap(v,w)外,还定义了一个单位流量费用cost(v,w) 最小费用最大流问题 给定网络G,要求G的一个最大用流flow,使流的总费用最小. 求解MCMF问题的算法: 最小费用最大流最常用和基本的算法我们可以称它为最小费用路算法,其思想与求最大流的增广路算法类似,不断在残流网络中寻找从源s到汇t的最小费用路,即残流网络中从s到t的以费用为权的最短路,然后沿最小费用路增流,直

POJ2135 最小费用最大流模板题

练练最小费用最大流 此外此题也是一经典图论题 题意:找出两条从s到t的不同的路径,距离最短. 要注意:这里是无向边,要变成两条有向边 #include <cstdio> #include <cstring> #define MAXN 1005 #define MAXM 10005 #define INF 0x3f3f3f3f struct Edge { int y,c,w,ne;//c容量 w费用 }e[MAXM*4]; int n,m,x,y,w; int s,t,Maxflow

poj 2195 最小费用最大流模板

/*Source Code Problem: 2195 User: HEU_daoguang Memory: 1172K Time: 94MS Language: G++ Result: Accepted Source Code */ #include <iostream> #include <stdio.h> #include <queue> #include <math.h> #include <string.h> using namespa

HDU 1533--Going Home【最小费用最大流 &amp;&amp; 模板】

Going Home Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3452    Accepted Submission(s): 1771 Problem Description On a grid map there are n little men and n houses. In each unit time, every

Doctor NiGONiGO’s multi-core CPU(最小费用最大流模板)

题目链接:http://acm.nyist.net/JudgeOnline/problem.php?pid=693 题意:有一个 k 核的处理器和 n 个工作,全部的工作都须要在一个核上处理一个单位的时间,每一个核在不同一时候间处理同一个工作的花费是递增的,每一个核一次仅仅能处理一个工作,求运用k个核处理这n个工作的最小花费. 分析: 分析可知,求处理全部工作的最小花费,而每次选择怎么处理我们能够通过容量都为1的边来让网络流处理,这样就转化为最小费用最大流. 首先设一个超级源点s,连接全部的工作

hdu 1853 Cyclic Tour 最小费用最大流

题意:一个有向图,现在问将图中的每一个点都划分到一个环中的最少代价(边权和). 思路:拆点,建二分图,跑最小费用最大流即可.若最大流为n,则说明是最大匹配为n,所有点都参与,每个点的入度和出度又是1,所以就是环. /********************************************************* file name: hdu1853.cpp author : kereo create time: 2015年02月16日 星期一 17时38分51秒 *******

POJ-2195 Going Home(最小费用最大流模板)

题目链接:POJ-2195 Going Home 题意 给出$N$行$M$列的网格,'m'表示人,'H'表示房子,且'm'和'H'的数量相同,一个人只能进一间房子,一间房子也只能给一个人进去,人可走上下左右四个方向,现在要让所有人进入房子,求最短路径和. 思路 这是一个二分图带权最小匹配问题,可直接用最小费用最大流求解. 源点向人各连一条容量为1,费用为0的边,每个人向每间房子连容量为1,费用为距离的边,每间房子向汇点连容量为1,费用为0的边,然后跑最小费用最大流即可. 代码实现 #includ

最小费用最大流 模板

nm无影响   s为源点  t为汇点 最大流为maxflow  最小费用为 mincost #include<cstdio> #include<cstring> #include<algorithm> #include<queue> using namespace std; const int maxn=100010; bool vis[maxn]; int n,m,s,t,x,y,z,f,dis[maxn],pre[maxn],last[maxn],flo