博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZOJ 2314 Reactor Cooling
阅读量:4315 次
发布时间:2019-06-06

本文共 7466 字,大约阅读时间需要 24 分钟。

Reactor Cooling

Time Limit: 5000ms
Memory Limit: 32768KB
This problem will be judged on 
ZJU. Original ID: 
64-bit integer IO format: %lld      Java class name: Main
Special Judge
 

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:

fi,1+fi,2+...+fi,N = f1,i+f2,i+...+fN,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

 

Source

 
解题:无源汇的上下界流。建图是关键。
 
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #define LL long long 14 #define pii pair
15 #define INF 0x3f3f3f3f 16 using namespace std; 17 const int maxn = 250; 18 struct arc { 19 int to,flow,next; 20 arc(int x = 0,int y = 0,int z = -1) { 21 to = x; 22 flow = y; 23 next = z; 24 } 25 }; 26 arc e[maxn*maxn]; 27 int head[maxn],d[maxn],cur[maxn],tot,S,T; 28 int q[maxn<<2],hd,tl; 29 int limit[maxn],b[20010]; 30 void add(int u,int v,int w) { 31 e[tot] = arc(v,w,head[u]); 32 head[u] = tot++; 33 e[tot] = arc(u,0,head[v]); 34 head[v] = tot++; 35 } 36 bool bfs() { 37 memset(d,-1,sizeof(d)); 38 hd = tl = 0; 39 q[tl++] = S; 40 d[S] = 1; 41 while(hd < tl) { 42 int u = q[hd++]; 43 for(int i = head[u]; ~i; i = e[i].next) { 44 if(e[i].flow && d[e[i].to] == -1) { 45 d[e[i].to] = d[u] + 1; 46 q[tl++] = e[i].to; 47 } 48 } 49 } 50 return d[T] > -1; 51 } 52 int dfs(int u,int low) { 53 if(u == T) return low; 54 int tmp = 0,a; 55 for(int &i = cur[u]; ~i; i = e[i].next) { 56 if(e[i].flow && d[e[i].to] == d[u] + 1 && (a = dfs(e[i].to,min(e[i].flow,low)))) { 57 tmp += a; 58 low -= a; 59 e[i].flow -= a; 60 e[i^1].flow += a; 61 if(!low) break; 62 } 63 } 64 if(!tmp) d[u] = -1; 65 return tmp; 66 } 67 int dinic(){ 68 int flow = 0; 69 while(bfs()){ 70 memcpy(cur,head,sizeof(head)); 71 flow += dfs(S,INF); 72 } 73 return flow; 74 } 75 int main() { 76 int u,v,c,w,n,m,cs; 77 scanf("%d",&cs); 78 while(cs--){ 79 scanf("%d %d",&n,&m); 80 memset(head,-1,sizeof(head)); 81 memset(limit,0,sizeof(limit)); 82 S = tot = 0; 83 T = n + 1; 84 for(int i = 0; i < m; i++){ 85 scanf("%d %d %d %d",&u,&v,b+i,&c); 86 add(u,v,c - b[i]); 87 limit[u] -= b[i]; 88 limit[v] += b[i]; 89 } 90 int fullflow = 0; 91 for(int i = 1; i <= n; i++) 92 if(limit[i] > 0){ 93 add(S,i,limit[i]); 94 fullflow += limit[i]; 95 }else if(limit[i] < 0) add(i,T,-limit[i]); 96 w = dinic(); 97 if(w != fullflow) puts("NO"); 98 else { 99 puts("YES");100 for(int i = 0; i < m; i++)101 printf("%d\n",e[i<<1^1].flow+b[i]);102 }103 if(cs) puts("");104 }105 return 0;106 }
View Code

 

另外一种建图方法

1 #include 
2 using namespace std; 3 const int INF = 0x3f3f3f3f; 4 const int maxn = 510; 5 struct arc{ 6 int to,flow,next; 7 arc(int x = 0,int y = 0,int z = -1){ 8 to = x; 9 flow = y;10 next = z;11 }12 }e[maxn*maxn];13 int head[maxn],d[maxn],cur[maxn],S,T,tot;14 void add(int u,int v,int flow){15 e[tot] = arc(v,flow,head[u]);16 head[u] = tot++;17 e[tot] = arc(u,0,head[v]);18 head[v] = tot++;19 }20 bool bfs(){21 queue
q;22 memset(d,-1,sizeof d);23 d[S] = 1;24 q.push(S);25 while(!q.empty()){26 int u = q.front();27 q.pop();28 for(int i = head[u]; ~i; i = e[i].next){29 if(e[i].flow && d[e[i].to] == -1){30 d[e[i].to] = d[u] + 1;31 q.push(e[i].to);32 }33 }34 }35 return d[T] > -1;36 }37 int dfs(int u,int low){38 if(u == T) return low;39 int a,tmp = 0;40 for(int &i = cur[u]; ~i; i = e[i].next){41 if(e[i].flow && d[e[i].to] == d[u] + 1&&(a=dfs(e[i].to,min(e[i].flow,low)))){42 e[i].flow -= a;43 e[i^1].flow += a;44 low -= a;45 tmp += a;46 if(!low) break;47 }48 }49 if(!tmp) d[u] = -1;50 return tmp;51 }52 int dinic(int ret = 0){53 while(bfs()){54 memcpy(cur,head,sizeof head);55 ret += dfs(S,INF);56 }57 return ret;58 }59 int bound[maxn*maxn];60 int main(){61 int kase,n,m,u,v,w,sum;62 scanf("%d",&kase);63 while(kase--){64 scanf("%d%d",&n,&m);65 memset(head,-1,sizeof head);66 int sum = S = 0;67 T = n + 1;68 for(int i = tot = 0; i < m; ++i){69 scanf("%d%d%d%d",&u,&v,bound + i,&w);70 add(u,v,w - bound[i]);71 add(S,v,bound[i]);72 add(u,T,bound[i]);73 sum += bound[i];74 }75 if(dinic() < sum) puts("NO");76 else{77 puts("YES");78 for(int i = 0; i < m; ++i)79 printf("%d\n",e[i*6+1].flow + bound[i]);80 }81 }82 return 0;83 }
View Code

 

转载于:https://www.cnblogs.com/crackpotisback/p/4000556.html

你可能感兴趣的文章
线段树模板整理
查看>>
[教程][6月4日更新]VMware 8.02虚拟机安装MAC lion 10.7.3教程 附送原版提取镜像InstallESD.iso!...
查看>>
[iOS问题归总]iPhone上传项目遇到的问题
查看>>
Python天天美味(总) --转
查看>>
Spring Framework tutorial
查看>>
【VS开发】win7下让程序默认以管理员身份运行
查看>>
【机器学习】Learning to Rank 简介
查看>>
Unity 使用实体类
查看>>
【转】通过文件锁实现,程序开始运行时,先判断文件是否存在,若存在则表明该程序已经在运行了,如果不存在就用open函数创建该文件,程序退出时关闭文件并删除文件...
查看>>
MySQL常见注意事项及优化
查看>>
流畅的Python (Fluent Python) —— 前言
查看>>
Jquery-menu-aim流畅的菜单滑动体验
查看>>
Jquery EasyUI修改行背景的两种方式
查看>>
生成器模式(Builder)C++实现
查看>>
Centos 7.5安装 Redis 5.0.0
查看>>
嵌入式Linux学习笔记(0)基础命令。——Arvin
查看>>
二分图匹配
查看>>
c++ 模板template
查看>>
javascript中的string对象
查看>>
CString的成员函数详解
查看>>