zoukankan      html  css  js  c++  java
  • zoj2314

    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

    上下界网络流...

    抄了个模板...自己理解一下 重点在于虚拟源汇的用处和如何判定无解

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    const int N = 100010, inf = 1 << 29;
    struct edge {
        int nxt, to, f;
    } e[N];
    int n, m, cnt;
    int head[N], q[N], d[N], in[N], low[N], up[N], iter[N]; 
    void link(int u, int v, int f)
    {
        e[++cnt].nxt = head[u];
        head[u] = cnt;
        e[cnt].to = v;
        e[cnt].f = f;
    }
    void ins(int u, int v, int f)
    {
        link(u, v, f); link(v, u, 0);
    }
    bool bfs()
    {
        int l = 1, r = 0;
        memset(d, 0, sizeof(d));
        q[++r] = 0; d[0] = 1;
        while(l <= r)
        {
            int u = q[l++];
            for(int i = head[u]; i; i = e[i].nxt) if(e[i].f && !d[e[i].to])
            {
                d[e[i].to] = d[u] + 1;
                q[++r] = e[i].to;
            }
        }
        return d[n + 1] > 0; 
    }
    int dfs(int u, int delta)
    {
        if(u == n + 1) return delta;
        int ret = 0;
        for(int &i = iter[u]; i && delta; i = e[i].nxt) if(e[i].f && d[e[i].to] == d[u] + 1)
        {
            int x = dfs(e[i].to, min(delta, e[i].f));
            e[i].f -= x; e[i ^ 1].f += x;
            ret += x; delta -= x;    
        }
        return ret;
    }
    void dinic()
    {
        while(bfs())
        {
            for(int i = 0; i <= n + 1; ++i) iter[i] = head[i];
            dfs(0, inf);
        }
    }
    void build()
    {
        for(int i = 1; i <= n; ++i) 
        {
            if(in[i] > 0) ins(0, i, in[i]);
            else ins(i, n + 1, -in[i]);
        }
    }
    bool judge()
    {
        for(int i =head[0]; i; i = e[i].nxt) if(e[i].f) return false;
        return true;
    }
    int main()
    {
        int T; scanf("%d", &T);
        while(T--)
        {
            memset(head, 0, sizeof(head));
            memset(e, 0, sizeof(e));
            memset(in, 0, sizeof(in));
            cnt = 1;
            scanf("%d%d", &n, &m); 
            for(int i = 1; i <= m; ++i)
            {
                int u, v;
                scanf("%d%d%d%d", &u, &v, &low[i], &up[i]);
                in[v] += low[i]; in[u] -= low[i];
                ins(u, v, up[i] - low[i]);
            }
            build();
            dinic();
            if(!judge()) puts("NO");
            else 
            {
                puts("YES");
                for(int i = 1; i <= m; ++i) printf("%d
    ", e[(i << 1) ^ 1].f + low[i]);
            }
        }
        return 0;
    }
    View Code
  • 相关阅读:
    python笔记-datetime-logging
    python笔记-json-base64-hashlib
    python笔记-redis数据库
    python笔记-mysql命令使用示例(使用pymysql执行)
    python笔记-python程序中操作mysql数据库
    python笔记-mysql约束条件与表关系
    python笔记-mysql查询
    python笔记-mysql基本命令
    Vue移动端项目模板h5
    基于环信SDK的IM即时通讯填坑之路(vue)
  • 原文地址:https://www.cnblogs.com/19992147orz/p/6613156.html
Copyright © 2011-2022 走看看