微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SGU 194 Reactor Cooling 无源汇带上下界可行流

Reactor Cooling

time limit per test: 0.5 sec.
memory limit per test: 65536 KB
input: standard
output: standard


The terrorist group leaded by a well kNown international terrorist Ben Bladen is buliding a nuclear reactor to produce plutonium for the nuclear bomb they are planning to create. Being the wicked computer genius of this group,you are responsible for developing the cooling system for the reactor.

The cooling system of the reactor consists of the number of pipes that special cooling liquid flows by. Pipes are connected at special points,called nodes,each pipe has the starting node and the end point. The liquid must flow by the pipe from its start point to its end point and not in the opposite direction.

Let the nodes be numbered from 1 to N. The cooling system must be designed so that the liquid is circulating by the pipes and the amount of the liquid coming to each node (in the unit of time) is equal to the amount of liquid leaving the node. That is,if we designate the amount of liquid going by the pipe from i-th node to j-th as f ij,(put f ij= 0 if there is no pipe from node i to node j),for each i the following condition must hold:


sum(j=1..N,f ij) = sum(j=1..N,f ji)


Each pipe has some finite capacity,therefore for each i and j connected by the pipe must be f ij≤ c ijwhere c ijis the capacity of the pipe. To provide sufficient cooling,the amount of the liquid flowing by the pipe going from i-th to j-th nodes must be at least l ij,thus it must be f ij≥ l ij.

Given c ijand l ijfor all pipes,find the amount f ij,satisfying the conditions specified above.

Input

The first line of the input file contains the number N (1 ≤ N ≤ 200) - the number of nodes and and M — the number of pipes. The following M lines contain four integer number each - i,j,l ijand c ijeach. There is at most one pipe connecting any two nodes and 0 ≤ l ij≤ c ij≤ 10 5for all pipes. No pipe connects a node to itself. If there is a pipe from i-th node to j-th,there is no pipe from j-th node to i-th.

Output

On the first line of the output file print YES if there is the way to carry out reactor cooling and NO if there is none. In the first case M integers must follow,k-th number being the amount of liquid flowing by the k-th pipe. Pipes are numbered as they are given in the input file.

Sample test(s)

Input
 
Test #14 61 2 1 22 3 1 23 4 1 24 1 1 21 3 1 24 2 1 2Test #24 61 2 1 32 3 1 33 4 1 34 1 1 31 3 1 34 2 1 3
Output
Test #1

NO

Test #2

YES
1
2
3
2
1

1


周源的论文一种简易的方法求解流量有上下界的网络中网络流问题

直接套路之


#include <cstdlib>
#include <cctype>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <bitset>

using namespace std;

#define PB push_back
#define MP make_pair
#define REP(i,n) for(int i=0;i<(n);++i)
#define FOR(i,l,h) for(int i=(l);i<=(h);++i)
#define DWN(i,h,l) for(int i=(h);i>=(l);--i)
#define CLR(vis,pos) memset(vis,pos,sizeof(vis))
#define PI acos(-1.0)
#define INF 0x3f3f3f3f
#define LINF 1000000000000000000LL
#define eps 1e-8

typedef long long ll;

const int mm=1000005;
const int mn=22222;

int n,m;
int node,s,t,edge,max_flow;

int ver[mm],flow[mm],next[mm];

int head[mn],work[mn],dis[mn],q[mn];

int vis[mn];

inline void init(int _node,int _s,int _t)
{
    node=_node,s=_s,t=_t;
    for(int i=0;i<node;++i)
        head[i]=-1;
    edge=max_flow=0;
}


inline void addedge(int u,int v,int c)
{
    ver[edge]=v,flow[edge]=c,next[edge]=head[u],head[u]=edge++;
    ver[edge]=u,flow[edge]=0,next[edge]=head[v],head[v]=edge++;
}


bool Dinic_bfs()
{
    int i,u,v,r=0;
    for(i=0;i<node;++i)  dis[i]=-1;
    dis[ q[r++]=s ] = 0;
    for(l=0;l<r;L++)
    {
       for(i=head[ u=q[l] ]; i>=0 ;i=next[i])
        if(flow[i] && dis[ v=ver[i] ]<0)
        {
            dis[ q[r++]=v ]=dis[u]+1;
            if(v==t) return 1;
        }
    }
    return 0;
}

int Dinic_dfs(int u,int exp)
{
    if(u==t) return exp;
    for(int &i=work[u],temp; i>=0 ;i=next[i])
    {
        if(flow[i] && dis[ v=ver[i] ]==dis[u]+1 && ( temp=Dinic_dfs(v,min(exp,flow[i])) )>0)
        {
           flow[i]-=temp;
           flow[i^1]+=temp;
           return temp;
        }
    }
    return 0;
}

int Dinic_flow()
{
    int res,i;
    while(Dinic_bfs())
    {
        for(i=0;i<node;++i) work[i]=head[i];
        while( ( res=Dinic_dfs(s,INF) ) )  max_flow+=res;
    }
    return  max_flow;
}

int w[mn],l[mn];

int main()
{
    int n,m;
    while(cin>>n>>m){
        CLR(w,0);
        init(n+2,n+1);
        int u,c;
        REP(i,m){
            scanf("%d%d%d%d",&u,&v,&l[i],&c);
            addedge(u,c-l[i]);
            w[u]-=l[i];
            w[v]+=l[i];
        }
        int sum=0;
        FOR(i,1,n){
            if(w[i]>0){
                addedge(s,i,w[i]);
                sum+=w[i];
            }
            if(w[i]<0)
                addedge(i,-w[i]);
        }
        int ans=Dinic_flow();
        if(ans!=sum)
            printf("NO\n");
        else{
            printf("YES\n");
            REP(i,m)
             printf("%d\n",flow[2*i+1]+l[i]);
        }
    }
    return 0;
}

原文地址:https://www.jb51.cc/react/308092.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐