UVA 10594-Date Flow(无向图的最小费用网络流+题目给的数据有误)

题意:给一个有N个点的无向图,要求从1向N传送一定的数据,每条边的容量是一定的,如果能做到,输出最小的费用,否则输出Impossible.

解析:由于是无向图,所以每个有连接的两个点要建4条边,分别是edge(from,to,cap,0,cost),edge(to,from,0,0,-cost),edge(to,from,cap,0,cost),edge(from,to,0,0,-cost)

设置一个起点0,0与1连一条有向边,容量为题目给出的D,这样限制了最大的流量,如果最后的流量不等于D,则是Impossible.否则输出最小费。

代码如下:

#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<set>
#include<map>
#include<queue>
#include<vector>
#include<iterator>
#include<utility>
#include<sstream>
#include<iostream>
#include<cmath>
#include<stack>
using namespace std;
const double eps=0.00000001;
typedef long long LL;
const LL INF=1ll<<60;
const int maxn=105;
const int maxm=5005;
const int skip=10010;
int N,M;
LL D,K;
int u[maxm],v[maxm];
LL waste[maxm];
struct edge
{
    int from,to;
    LL cap;
    LL flow,cost;
    edge(int from=0,int to=0,LL cap=0,LL flow=0,LL cost=0)
    :from(from),to(to),cap(cap),flow(flow),cost(cost){}
}save[4*maxm];
int edge_num;
vector<int> G[maxn];
void addedge(int from,int to,LL cap,LL cost)
{
    int a=edge_num++;             //  增加4条边,编号分别是a,b,sa,sb,skip的目的是为了把一条无向边分隔开,    int b=edge_num++;              //  因为如果其中一条有向边的flow改变了,另一条边也要改变
    int sa=a+skip;
    int sb=b+skip;
    save[a]=edge(from,to,cap,0,cost);
    save[b]=edge(to,from,0,0,-cost);
    save[sa]=edge(to,from,cap,0,cost);
    save[sb]=edge(from,to,0,0,-cost);
    G[from].push_back(a); G[from].push_back(sb);  // 建立临接表
    G[to].push_back(b);   G[to].push_back(sa);
}
LL add[maxn],C[maxn];   // add[]是增加的流量
int fa[maxn];           // 保存父亲边编号
bool inq[maxn];         // 入队标记
inline void init(int be)    // 初始化
{
    memset(add,0,sizeof(add));
    memset(inq,false,sizeof(inq));
    add[be]=INF;
    fa[be]=0;
    inq[be]=true;
    for(int i=0;i<=N;i++)  C[i]=INF;
    C[be]=0;
}
void MFMC(int be,int en)
{
    LL cnt=0;
    LL ret=0;           //  cnt是最大流量,ret是最小费用
    while(true)
    {
        init(be);
        queue<int> que;
        que.push(be);
        while(!que.empty())
        {
            int from=que.front();  que.pop();
            inq[from]=false;                   // spfa跑最小费,入队标记改为false
            for(int i=0;i<G[from].size();i++)
            {
                int edge_id=G[from][i];
                edge& e=save[edge_id];
                int to=e.to;
                LL cap=e.cap,flow=e.flow,cost=e.cost;
                if(cap>flow&&C[to]>C[from]+cost)    //更新
                {
                    C[to]=C[from]+cost;
                    fa[to]=edge_id;                  // 保存编号
                    add[to]=min(add[from],cap-flow);
                    if(!inq[to]){ inq[to]=true; que.push(to); }  //入队
                }
            }
        }
        if(!add[en])  break;
        cnt+=add[en];
        ret+=add[en]*C[en];
        for(int st=en;st!=be;st=save[fa[st]].from)   // 往回找
        {
            int a=fa[st],b=fa[st]^1;                 // 修改4条边
            int sa,sb;
            if(a<skip) { sa=a+skip;sb=sa^1; }
            else { sa=a-skip; sb=sa^1; }
            save[a].flow+=add[en];
            save[b].flow-=add[en];
            save[sa].flow-=add[en];
            save[sb].flow+=add[en];
        }
    }
    if(cnt==D) printf("%lld\n",ret);
    else  printf("Impossible.\n");
}
int main()
{
    while(cin>>N>>M)
    {
        for(int i=0;i<maxn;i++)  G[i].clear();
        for(int i=1;i<=M;i++) scanf("%d%d%lld",&u[i],&v[i],&waste[i]);
        scanf("%lld%lld",&D,&K);
        save[0]=edge(0,1,D,0,0);   // 建立0到的边
        save[1]=edge(1,0,0,0,0);
        G[0].push_back(0);
        G[1].push_back(1);
        edge_num=2;
        for(int i=1;i<=M;i++)  addedge(u[i],v[i],K,waste[i]);  // 增加边
        MFMC(0,N);
    }
    return 0;
}
 
时间: 2024-10-15 08:55:16

UVA 10594-Date Flow(无向图的最小费用网络流+题目给的数据有误)的相关文章

uva 10594 Data Flow (最小费最大流+题目给的数据有错)

uva 10594 Data Flow 题目大意:给出一张图,以及D, K,D代表所要传送的数据量,K代表每条边可以传送的数据量(就是容量),问在可以传送所有数据的前提下,最小耗费时间. 解题思路:建一个超级源点连向源点1,容量为D,然后求该图的最小费最大流.最后将求出的最大流与D比较,比D小输出inpossible,否则输出最小费. #include <cstdio> #include <cstring> #include <algorithm> #include &

UVA 10594 Data Flow (最小费用流)

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=116&page=show_problem&problem=1535 Problem F Data Flow Time Limit 5 Seconds   In the latest Lab of IIUC, it requires to send huge amount of data from the local s

hdoj 3488 Tour 【最小费用最大流】【KM算法】

Tour Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others) Total Submission(s): 2299    Accepted Submission(s): 1151 Problem Description In the kingdom of Henryy, there are N (2 <= N <= 200) cities, with M (M <= 3000

HDU 3488--Tour【最小费用最大流 &amp;&amp; 有向环最小权值覆盖 &amp;&amp; 经典】

Tour Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others) Total Submission(s): 2308    Accepted Submission(s): 1156 Problem Description In the kingdom of Henryy, there are N (2 <= N <= 200) cities, with M (M <= 3000

HDU 5889 Barricade 【BFS+最小割 网络流】(2016 ACM/ICPC Asia Regional Qingdao Online)

Barricade Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Submission(s): 997    Accepted Submission(s): 306 Problem Description The empire is under attack again. The general of empire is planning to defend his

UVA 10746 Crime Wave - The Sequel【最小费用最大流】

题目链接: https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1687 题意:给你n个城市到m个海港的距离,求每个城市都有船只去的最短平均航行距离. 源点向城市建边 城市向海港 海港向汇点建边 容量为1,最后城市向海港的费用为距离 代码: #include<stdio.h> #include<iostream> #in

【CF708D】Incorrect Flow 最小费用可行流

[CF708D]Incorrect Flow 题意:给你一个点数为n,边数为m的流网络,每条边有一个容量c和流量f,这个网络可能是不合法的.你可以花费1的代价使c或f减少或增加1,可以修改无限次.你不需要使流量最大,你只需要花费最少的代价把原图改造成一个合法的网络. $n,m\le 100,c,f\le 10^6$ 题解:我们用有上下界的费用流来解决这个问题. 对于一条边a->b,如果c>f,则我们从a到b连一条下界和上界都是f,费用为0的边:因为可以减少流量,所以连一条从b到a,容量为f,费

POJ 2135 Farm Tour(最小费用最大流,变形)

题意:给一个无向图,FJ要从1号点出发到达n号点,再返回到1号点,但是路一旦走过了就会销毁(即回去不能经过),每条路长度不同,那么完成这趟旅行要走多长的路?(注:会有重边,点号无序,无向图!) 思路: 有重边,要用邻接表.所给的每条边都要变成4条有向边!否则可能一开始就到达不了终点了.最后要再加上一个源点和汇点,容量cap(源点,1)=2,指定只能走两次,再规定其他所给的边的容量是1就行了,当边被走过了,就自动增加了流,也就走不了了. 解释看代码更清晰. 1 //#pragma comment(

【BZOJ3876】【Ahoi2014】支线剧情 有下界的最小费用最大流

#include <stdio.h> int main() { puts("转载请注明出处谢谢"); puts("http://blog.csdn.net/vmurder/article/details/43025375"); } [BZOJ2324]营救皮卡丘 这道题也是一道有下界的最小费用最大流. 我的题解地址:http://blog.csdn.net/vmurder/article/details/41378979 这道题其实就是模板题. 我的处理