• hdu 1532 Drainage Ditches(最大流模板题)


    Drainage Ditches

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 14721    Accepted Submission(s): 6968


    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
     
    Source
     
    Recommend
    lwg   |   We have carefully selected several similar problems for you:  1533 3338 1569 3572 3416 
     
    第一次学习写最大流问题,一道模板题,思路还是比较清晰的,不过算法效率不是很高,还需要学习更快的方法。
     
    题意:就是由于下大雨的时候约翰的农场就会被雨水给淹没,无奈下约翰不得不修建水沟,而且是网络水沟,并且聪明的约翰还控制了水的流速,本题就是让你求出最大流速,无疑要运用到求最大流了。题中N为水沟数,M为水沟的顶点,接下来Si,Ei,Ci分别是水沟的起点,终点以及其容量。求源点1到终点M的最大流速。注意重边
     
    附上代码:
     
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <queue>
     5 using namespace std;
     6 #define INF 1e9
     7 #define CL(a,b) memset(a,b,sizeof(a))
     8 #define N 205
     9 
    10 int n,m;
    11 int mat[N][N];
    12 int pre[N];
    13 bool vis[N];
    14 
    15 int xmin(int a,int b)
    16 {
    17     return a>b?b:a;
    18 }
    19 
    20 bool BFS()
    21 {
    22     int cur;
    23     queue<int> q;
    24     CL(pre,0);
    25     CL(vis,false);
    26     vis[1]=true;   ///true表示这个点已作为起点搜索过了
    27     q.push(1);
    28     while(!q.empty())
    29     {
    30         cur=q.front();
    31         q.pop();
    32         if(cur == n) return true;  ///若搜到了终点,说明这是条增广路径,更新结果
    33         for(int i=1; i<=n; i++)
    34             if(!vis[i] && mat[cur][i]) ///是否存在通过的路径
    35             {
    36                 q.push(i);
    37                 pre[i]=cur;
    38                 vis[i]=true;
    39             }
    40     }
    41     return false;   ///若已经搜不到终点,则搜索结束
    42 }
    43 
    44 int max_flow()
    45 {
    46     int ans=0;
    47     while(1)
    48     {
    49         if(!BFS()) return ans;
    50         int Min = INF;
    51         for(int i=n; i!=1; i=pre[i])
    52             Min=xmin(Min,mat[pre[i]][i]);  ///找到最小的边,残留路径越小,则流量越大
    53         for(int i=n; i!=1; i=pre[i])
    54         {
    55             mat[pre[i]][i]-=Min;   ///正向边
    56             mat[i][pre[i]]+=Min;   ///反向边
    57         }
    58         ans+=Min;
    59     }
    60 }
    61 
    62 int main()
    63 {
    64     int i,j;
    65     while(~scanf("%d%d",&m,&n))
    66     {
    67         CL(mat,0);
    68         int a,b,c;
    69         while(m--)
    70         {
    71             scanf("%d%d%d",&a,&b,&c);
    72             mat[a][b]+=c;    ///考虑重边情况,若有两条同样的边,流量为它们的和
    73         }
    74         printf("%d
    ",max_flow());
    75     }
    76     return 0;
    77 }
  • 相关阅读:
    2018常用DOM操作总结
    emlog实现全站pjax无刷新加载页面
    深入理解Vuex 框架
    2018前端最火的web UI框架
    小程序快递单号查询
    表单元素系列二
    表单元素系列一
    表单提交
    AJAX 回调函数刷新页面问题
    electron 常用命令
  • 原文地址:https://www.cnblogs.com/pshw/p/5681076.html
Copyright © 2020-2023  润新知