zoukankan      html  css  js  c++  java
  • HDU 1532 Drainage Ditches (最大网络流)

    Drainage Ditches

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
    Total Submission(s) : 5   Accepted Submission(s) : 3

    Font: Times New Roman | Verdana | Georgia

    Font Size: ← →

    Problem 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
    #include <iostream>
    #include<cstdio>
    #include<cstring>
    #include<queue>
    #include<algorithm>
    
    using namespace std;
    const int inf=0x7fffffff;
    int vis[202],pre[202],mp[202][202];
    int i,n,m,sum;
    long long ans;
    int bfs()
    {
        int findpath=0;
        queue<int> Q;
        memset(vis,0,sizeof(vis));
        memset(pre,0,sizeof(pre));
        pre[1]=0;
        vis[1]=1;
        Q.push(1);
        while(!Q.empty())
        {
            int u=Q.front();
            Q.pop();
            for(int i=1;i<=n;i++)
                if(mp[u][i]>0 && !vis[i])
            {
                vis[i]=1;
                pre[i]=u;
                Q.push(i);
                if (i==n) {findpath=1; break;}
            }
        }
        if (!findpath) return 0;
        int maxflow=inf;
        int v=n;
        while(pre[v]>0)
        {
            maxflow=min(maxflow,mp[pre[v]][v]);
            v=pre[v];
        }
        v=n;
        while(pre[v]>0)
        {
            mp[v][pre[v]]+=maxflow;
            mp[pre[v]][v]-=maxflow;
            v=pre[v];
        }
        return maxflow;
    }
    int main()
    {
        while(~scanf("%d%d",&m,&n))
        {
            memset(mp,0,sizeof(mp));
            for(i=1;i<=m;i++)
            {
                int x,y,z;
                scanf("%d%d%d",&x,&y,&z);
                mp[x][y]+=z;//找了好久的错误,最后发现可能有好多条重复的,要累加
            }
            ans=0;
           while(sum=bfs()) ans+=sum;
           printf("%d\n",ans);
        }
        return 0;
    }
  • 相关阅读:
    php javascript
    在线支付接口之PHP支付宝接口开发
    作业9 最长公共子序列
    第十二章 税制的设计
    第十一章 公共物品和公共资源
    第十章 外部性
    第九章 应用:国际贸易
    作业8 矩阵乘法链
    第八章 应用:赋税的代价
    第七章 消费者、生产者与市场效率
  • 原文地址:https://www.cnblogs.com/stepping/p/5700571.html
Copyright © 2011-2022 走看看