zoukankan      html  css  js  c++  java
  • ZOJ 2314 Reactor Cooling

    Reactor Cooling

    Time Limit: 5000ms
    Memory Limit: 32768KB
    This problem will be judged on ZJU. Original ID: 2314
    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 <iostream>
      2 #include <cstdio>
      3 #include <cstring>
      4 #include <cmath>
      5 #include <algorithm>
      6 #include <climits>
      7 #include <vector>
      8 #include <queue>
      9 #include <cstdlib>
     10 #include <string>
     11 #include <set>
     12 #include <stack>
     13 #define LL long long
     14 #define pii pair<int,int>
     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
    ",e[i<<1^1].flow+b[i]);
    102         }
    103         if(cs) puts("");
    104     }
    105     return 0;
    106 }
    View Code

    另外一种建图方法

     1 #include <bits/stdc++.h>
     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<int>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
    ",e[i*6+1].flow + bound[i]);
    80         }
    81     }
    82     return 0;
    83 }
    View Code
  • 相关阅读:
    Python RabbitMQ
    对于一些概念的澄清
    Python没有执行__init__
    python中的gil是什么?
    linux命令行快捷键
    关于异步:再次思考和澄清
    greenlet代码解读
    关于协程
    设计模式-重复重复的设计模式
    组合模式-虚有其表的模式
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/4000556.html
Copyright © 2011-2022 走看看