Reactor Cooling - sgu 194 無源匯可行流

 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 fij, (put fij = 0 if there is no pipe from node i to node j), for each i the following condition must hold: 


sum(j=1..N, fij) = sum(j=1..N, fji


Each pipe has some finite capacity, therefore for each i and j connected by the pipe must be fij ≤ cij where cij is 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 lij, thus it must be fij ≥ lij

Given cij and lij for all pipes, find the amount fij, 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, lij and cij each. There is at most one pipe connecting any two nodes and 0 ≤ lij ≤ cij ≤ 105 for 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 #1 4 6 1 2 1 2 2 3 1 2 3 4 1 2 4 1 1 2 1 3 1 2 4 2 1 2 Test #2 4 6 1 2 1 3 2 3 1 3 3 4 1 3 4 1 1 3 1 3 1 3 4 2 1 3 
Output

Test #1 

NO 

Test #2 

YES 






題意:給定一個網絡圖每條邊的流量限制l<=f<=r,求是否有可行流,如果有可行流的話,這些邊的流量各是多少。

思路:這個屬於無源匯可行流,具體參考http://blog.csdn.net/water_glass/article/details/6823741

AC代碼如下:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
using namespace std;
struct node
{
    int u,v,flow,next;
}edge[100010];
struct node2
{
    int u,v,l,r;
}arr[40010];
int n,m,Head[210],d[210],s,t,tot,INF=1e9;
int ans[210][210];
queue<int> qu;
void add(int u,int v,int f)
{
    edge[tot].u=u;
    edge[tot].v=v;
    edge[tot].flow=f;
    edge[tot].next=Head[u];
    Head[u]=tot++;
}
int bfs()
{
    int i,j,u,v;
    memset(d,-1,sizeof(d));
    while(!qu.empty())
      qu.pop();
    qu.push(s);
    d[s]=0;
    while(!qu.empty())
    {
        u=qu.front();
        qu.pop();
        for(i=Head[u];i!=-1;i=edge[i].next)
        {
            v=edge[i].v;
            if(edge[i].flow>0 && d[v]==-1)
            {
                d[v]=d[u]+1;
                if(v==t)
                  return 1;
                qu.push(v);
            }
        }
    }
    return 0;
}
int dfs(int u,int f)
{

    if(u==t || f==0)
      return f;
    int ret=0,i,j,k,v;
    for(i=Head[u];i!=-1;i=edge[i].next)
    {
        v=edge[i].v;
        if(edge[i].flow>0 && d[v]==d[u]+1)
        {
            k=dfs(v,min(edge[i].flow,f));
            edge[i].flow-=k;
            edge[i^1].flow+=k;
            f-=k;
            ret+=k;
            if(f==0)
              break;
        }
    }
    d[u]=-1;
    return ret;
}
int main()
{
    int i,j,k=0,k2,u,v,l,r;
    scanf("%d%d",&n,&m);
    s=n+1;
    t=n+2;
    memset(Head,-1,sizeof(Head));
    memset(ans,0,sizeof(ans));
    tot=0;
    for(i=1;i<=m;i++)
    {
        scanf("%d%d%d%d",&u,&v,&l,&r);
        arr[i].u=u;arr[i].v=v;arr[i].l=l;arr[i].r=r;
        add(u,v,r-l);
        add(v,u,0);
        add(u,t,l);
        add(t,u,0);
        add(s,v,l);
        add(v,s,0);
        k+=l;
        ans[u][v]=l;
    }
    k2=0;
    while(bfs())
    {
        k2+=dfs(s,INF);
        //printf("k2=%d\n",k2);
    }
    if(k==k2)
    {
        printf("YES\n");
        for(i=1;i<tot;i+=2)
           ans[edge[i].v][edge[i].u]+=edge[i].flow;
        for(i=1;i<=m;i++)
           printf("%d\n",ans[arr[i].u][arr[i].v]);
    }
    else
      printf("NO\n");
}



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章