Passive sink has upper and lower bounded viable stream existence theorem

Source: Internet
Author: User
H-& #160; ReactorCoolingTimeLimit: 5000 MS & #160; & #160; & #160; & #160; & #160; MemoryLimit: 32768KB & #160; & #160; & #160; & #160; & #160; 64 bitIOFormat: % lld & amp; % lluSubmit & # H-Reactor Cooling Time Limit:5000 MS Memory Limit:32768KB 64bit IO Format:% Lld & % lluSubmit Status

Description

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. 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:

F I, 1 + f I, 2 +... + f I, N = f 1, I + f 2, I +... + f N, I

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.


This problem contains multiple test cases!

The first line of a multiple input is an integer N, then a blank line followed by N input blocks. each input block is in the format indicated in the problem description. there is a blank line between input blocks.

The output format consists of N output blocks. There is a blank line between output blocks.


Input

The first line of the input file contains the number N (1 <= N <= 200)-the number of nodes 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 <= 10 ^ 5 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 Input

2

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

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


Sample Input

NO

YES
1
2
3
2
1
1

This is the maximum stream improvement model for a passive sink with upstream/downstream processing to determine whether a feasible stream exists. The concept of a feasible stream is 1) Ef (u, I) = Ef (I, v) & f (u, v) <= C (u, v), while the concept of a feasible stream with the upper and lower bounds is 2) Ef (u, I) = Ef (I, v) & B (u, v) <= f (u, v) <= C (u, v). Therefore, the upper and lower bounded graph is converted into a graph without a lower bound graph. However, when converting, we need to create condition 1. Therefore, we need to use the condition of the lower bound for derivation:


Bytes:
#include
 
  #include
  
   #include
   
    #define INF 0x7fffffff #define size 250using namespace std;struct node{int a,b,aa;}vv[size];queue
    
     Q;int map[size][size],pre[size];int bfs(int s,int e){int flow[250];for(int i=s;i<=e;i++)pre[i] = -1;pre[s] = 0;while(!Q.empty())Q.pop();Q.push(s);flow[s] = INF;while(!Q.empty()){int a= Q.front();Q.pop();if(a==e)break;for(int i=s;i<=e;i++){if(map[a][i]>0&&pre[i]==-1){Q.push(i);pre[i] = a;flow[i] = min(flow[a],map[a][i]);}}}return pre[e]==-1?-1:flow[e];}int main(){int t;int ds[250][250],ru[250];int flow;scanf("%d",&t);while(t--){getchar();memset(ru,0,sizeof(ru));memset(map,0,sizeof(map));memset(ds,0,sizeof(ds));int m,n,a,b,aa,bb;scanf("%d%d",&n,&m);for(int i=0;i
     
      =0)map[0][i] = ru[i];else map[i][n+1] = -1*ru[i];while((flow = bfs(0,n+1))!=-1){int k = n+1;while(k!=0){int last;last = pre[k];map[last][k] -=flow;map[k][last] +=flow;ds[last][k] +=1;k = last;} } int i;//for(int i=0;i<=n+1;i++)printf("map1 = %d map2 = %d ds1 = %d ds2 = %d\n",map[0][i],map[i][n+1],ds[0][i],ds[i][n+1]);for(i=0;i<=n+1;i++)if(map[0][i]==0&&map[i][n+1]==0);else break;if(i==n+2){puts("YES");for(i=0;i
      
       

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.