zoukankan      html  css  js  c++  java
  • POJ-1273 Drainage Ditches 最大流Dinic

    Drainage Ditches
    Time Limit: 1000MS Memory Limit: 10000K
    Total Submissions: 65146 Accepted: 25112

    Description
    Every time it rains on Farmer John’s fields, a pond forms over Bessie’s favorite clover patch. This means that the clover is covered by water for awhile and takes quite a long time to regrow. Thus, Farmer John has built a set of drainage ditches so that Bessie’s clover patch is never covered in water. Instead, the water is drained to a nearby stream. Being an ace engineer, Farmer John has also installed regulators at the beginning of each ditch, so he can control at what rate water flows into that ditch.
    Farmer John knows not only how many gallons of water each ditch can transport per minute but also the exact layout of the ditches, which feed out of the pond and into each other and stream in a potentially complex network.
    Given all this information, determine the maximum rate at which water can be transported out of the pond and into the stream. For any given ditch, water flows in only one direction, but there might be a way that water can flow in a circle.

    Input
    The input includes several cases. For each case, the first line contains two space-separated integers, N (0 <= N <= 200) and M (2 <= M <= 200). N is the number of ditches that Farmer John has dug. M is the number of intersections points for those ditches. Intersection 1 is the pond. Intersection point M is the stream. Each of the following N lines contains three integers, Si, Ei, and Ci. Si and Ei (1 <= Si, Ei <= M) designate the intersections between which this ditch flows. Water will flow through this ditch from Si to Ei. Ci (0 <= Ci <= 10,000,000) is the maximum rate at which water will flow through the ditch.

    Output
    For each case, output a single integer, the maximum rate at which water may emptied from the pond.

    Sample Input
    5 4
    1 2 40
    1 4 20
    2 4 20
    2 3 30
    3 4 10

    Sample Output
    50

    题目大意:草地排水。。。
    多组数据,有源有汇。。。。

    CODE:

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<queue>
    #include<algorithm>
    using namespace std;
    #define maxn 300
    int dis[maxn]={0};
    int way[maxn][maxn]={0};
    int q[maxn*10],h,t;
    int n,m,ans;
    
    bool bfs()
    {
        h=0;t=1;
        memset(dis,0xff,sizeof(dis));
        dis[1]=0;
        q[1]=1;
        while (h<t)
            {
                int j=q[++h];
                for (int i=1; i<=n; i++)
                    {
                        if (dis[i]<0 && way[j][i]>0)
                            {
                                dis[i]=dis[j]+1;
                                q[++t]=i;
                            }
                    }
            }
        if (dis[n]>0)
            return true;
        else
            return false;
    }
    
    
    int dfs(int loc,int low)
    {
        int ans=0;
        if (loc==n) return low;
        for (int i=1; i<=n; i++)
            if (way[loc][i]>0 && dis[i]==dis[loc]+1 && (ans=dfs(i,min(loc,way[loc][i]))))
                {
                    way[loc][i]-=ans;
                    way[i][loc]+=ans;
                    return ans;
                }
        return 0;
    }
    
    int main()
    {
        while (~scanf("%d%d",&m,&n))
            {
                memset(way,0,sizeof(way));
                for (int i=1; i<=m; i++)
                    {
                        int s,e,water;
                        scanf("%d%d%d",&s,&e,&water);
                        way[s][e]+=water;
                    }
                ans=0;
                while (bfs())
                    {
                        int now;
                        while (now=dfs(1,0x7fffffff))
                            ans+=now;
                    }
                printf("%d
    ",ans);
            }
        return 0;
    }
  • 相关阅读:
    JavaScript 设计模式系列 : 单例(Singleton)模式
    JavaScript 设计模式系列 : 工厂模式
    《Python数据分析常用手册》一、NumPy和Pandas篇
    python字符串的方法及注释
    量化投资_TB交易开拓者A函数和Q函数常见组合应用
    凯利公式
    python数据分析入门学习笔记
    VBA语言基础
    VBA遍历文件夹下文件文件实用源码
    如何判断单链表里面是否有环【转载】
  • 原文地址:https://www.cnblogs.com/DaD3zZ-Beyonder/p/5346238.html
Copyright © 2011-2022 走看看