zoukankan      html  css  js  c++  java
  • hdu3549 Flow Problem(裸最大流)

                                                  Flow Problem
    Time Limit:5000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u

    Description

    Network flow is a well-known difficult problem for ACMers. Given a graph, your task is to find out the maximum flow for the weighted directed graph.
     

    Input

    The first line of input contains an integer T, denoting the number of test cases.
    For each test case, the first line contains two integers N and M, denoting the number of vertexes and edges in the graph. (2 <= N <= 15, 0 <= M <= 1000)
    Next M lines, each line contains three integers X, Y and C, there is an edge from X to Y and the capacity of it is C. (1 <= X, Y <= N, 1 <= C <= 1000)
     

    Output

    For each test cases, you should output the maximum flow from source 1 to sink N.
     

    Sample Input

    2 3 2 1 2 1 2 3 1 3 3 1 2 1 2 3 1 1 3 1
     

    Sample Output

    Case 1: 1

    Case 2: 2


    题目比较简单,入门级最大流问题。

    #include<cstdio>
    #include<algorithm>
    #include<queue>
    #include<string.h>
    #define MAXN 21
    #define INF 1<<28

    using namespace std;

    int cap[MAXN][MAXN], pre[MAXN], vis[MAXN], maxflow[MAXN];
    int Maxflow;
    int n, m, i, j;

    void init()
    {
        int x, y, z;
        memset(cap, 0sizeof(cap));
        memset(pre, 0sizeof(pre));

        scanf("%d%d", &n, &m);
        for(i=1; i<=m; i++)
        {
            scanf("%d%d%d", &x, &y, &z);
            cap[x][y] += z;//重边
        }
    }

    int min(int a, int b)
    {
        return a>b?b:a;
    }

    int main()
    {
        int T, u, k=1;
        scanf("%d", &T);
        while(T--)
        {

            init();
            queue<int>q;
            Maxflow = 0;

            while(1)
           {
            memset(maxflow, 0sizeof(maxflow));
            memset(vis, 0sizeof(vis));
            maxflow[1] = INF;


            q.push(1);
            while(!q.empty())
            {
                 u = q.front();
                 q.pop();
                 for(int v=1; v<=n; v++)
                 {
                     if(!vis[v] && cap[u][v]>0)
                        {
                            vis[v] = 1;
                            pre[v] = u;
                            q.push(v);
                            maxflow[v] = maxflow[u]<cap[u][v]?maxflow[u]:cap[u][v];
                        }
                 }
            }
            if(maxflow[n]==0break;

            for(int i=n; i!=1; i=pre[i])
            {
                cap[pre[i]][i]-=maxflow[n];
                cap[i][pre[i]]+=maxflow[n];
            }

           Maxflow += maxflow[n];
        }
          printf("Case %d: %d ", k++, Maxflow);
        }
         return 0;
    }
    View Code

    每天训练发现我比别人做的好慢,但是理解的更深刻,如果一开始学一个新知识点就搜模板,那么这样的人是走不远的,毕业之后带走的只有思维,什么荣誉,奖杯都已经不重要了。
  • 相关阅读:
    信用评分卡Credit Scorecards (1-7)
    数据可视化 – 银行案例学习实例 (Part 1-6)
    CatBoost算法和GPU测试(python代码实现)
    xgboost调参指南
    Dream team: Stacking for combining classifiers梦之队:组合分类器
    集成学习算法汇总----Boosting和Bagging(推荐AAA)
    算法优点和缺点汇总(推荐AAA)
    (剑指Offer)面试题59:对称的二叉树
    (笔试题)质数因子Prime Factor
    (笔试题)把一个整数数组中重复的数字去掉
  • 原文地址:https://www.cnblogs.com/6bing/p/3928329.html
Copyright © 2011-2022 走看看