无源汇有上下界可行流存在定理

H - Reactor Cooling
Time Limit:5000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu

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

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

这是一个无源汇有上下界处理是否存在可行流的网络最大流改进模型;
一个可行流的概念是    1) Ef(u,i) ==Ef(i,v)&&f(u,v)<=C(u,v),而有上下界的可行流概念是    2) Ef(u,i) ==Ef(i,v)&&B(u,v)<=f(u,v)<=C(u,v),因此将上下界的图转化为无下界的图。但在转化的时候,我们需要创造条件1,因此需要利用下界的条件进行推导:


http://wenku.baidu.com/view/0f3b691c59eef8c75fbfb35c.html
一种新的方法,最简洁代码:
<pre name="code" class="cpp">#include<stdio.h>
#include<string.h>
#include<queue>
#define INF 0x7fffffff 
using namespace std;
struct node{
	int a,b,c;
}v[210*210];
queue<int>Q;
int pre[210],map[210][210];
int bfs(int s,int e){
	int flow[210];
	for(int i=s;i<=e;i++)pre[i] = -1;
	while(!Q.empty())Q.pop();
	flow[s] = INF;
	Q.push(s);
      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 && i!=s){
			pre[i] = a;
			Q.push(i);
			flow[i]  =  min(flow[a],map[a][i]);
		} 
	  }
	return pre[e] == -1?-1:flow[e];
	}
int main (){
	int t;
	scanf("%d",&t); 
	while(t--){
		int ru[210];
		int n,m,s,s1;
		s = s1 = 0;
		memset(ru,0,sizeof(ru));
		memset(map,0,sizeof(map));
		scanf("%d%d",&n,&m);
		for(int i = 0;i < m;i++){
			int a,b,c,d;
			scanf("%d%d%d%d",&a,&b,&c,&d);
			map[a][b] += d-c;
			ru[a] -= c;
			ru[b] += c;
			v[i].a = a;
			v[i].b = b;
			v[i].c = c; 
		}
		for(int i=1;i<=n;i++){
			if(ru[i]>=0){map[0][i] = ru[i];s1+=ru[i];}
			else map[i][n+1] = ru[i]*(-1);
		}
		int flow;
		while((flow = bfs(0,n+1))!= -1){
			s+=flow;
			int  k = n+1;
			while(k!=0){
				int last = pre[k];
				map[last][k] -= flow;
				map[k][last] += flow;
				k = last;
			}
		}
		if(s<s1)puts("NO");
		else {
		    puts("YES");
		    for(int i=0;i<m;i++){
    			printf("%d\n",map[v[i].b][v[i].a]+v[i].c);
    		}
		}
		
	}
} 


 
   
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值