zoukankan      html  css  js  c++  java
  • hdu 3549 Flow Problem (Dinic)

    Flow Problem
    Time Limit: 5000/5000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
    Total Submission(s): 21438    Accepted Submission(s): 10081

    Problem 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

    C/C++:

     1 #include <map>
     2 #include <queue>
     3 #include <cmath>
     4 #include <vector>
     5 #include <string>
     6 #include <cstdio>
     7 #include <cstring>
     8 #include <climits>
     9 #include <iostream>
    10 #include <algorithm>
    11 #define INF 0x3f3f3f3f
    12 using namespace std;
    13 const int my_max = 20;
    14 
    15 int N, M, my_map[my_max][my_max], my_source, my_sink
    16     , my_dis[my_max];
    17 
    18 int my_dfs(int my_step, int my_ans)
    19 {
    20     if (my_step == my_sink) return my_ans;
    21 
    22     int my_temp = my_ans;
    23     for (int i = 1; i <= N && my_ans; ++ i)
    24     {
    25         if (my_dis[my_step] == my_dis[i] + 1 && my_map[my_step][i])
    26         {
    27             int t = my_dfs(i, min(my_ans, my_map[my_step][i]));
    28             my_map[my_step][i] -= t;
    29             my_map[i][my_step] += t;
    30             my_ans -= t;
    31         }
    32     }
    33     return my_temp - my_ans;
    34 }
    35 
    36 bool my_bfs()
    37 {
    38     memset(my_dis, -1, sizeof(my_dis));
    39     queue <int> Q;
    40     my_dis[my_sink] = 0;
    41     Q.push(my_sink);
    42     while (!Q.empty())
    43     {
    44         int now = Q.front();
    45         for (int i = 1; i <= N; ++ i)
    46         {
    47             if (my_map[i][now] > 0 && my_dis[i] == -1)
    48             {
    49                 my_dis[i] = my_dis[now] + 1;
    50                 Q.push(i);
    51             }
    52         }
    53         if (now == my_source) return true;
    54         Q.pop();
    55     }
    56     return false;
    57 }
    58 
    59 int my_dinic()
    60 {
    61     int my_ans = 0;
    62     while (my_bfs())
    63         my_ans += my_dfs(my_source, INF);
    64 
    65     return my_ans;
    66 }
    67 
    68 int main()
    69 {
    70     int t;
    71     scanf("%d", &t);
    72     for (int i = 1; i <= t; ++ i)
    73     {
    74         memset(my_map, 0, sizeof(my_map));
    75         scanf("%d%d", &N, &M);
    76         my_source = 1, my_sink = N;
    77 
    78         while (M --)
    79         {
    80             int x, y, x_y;
    81             scanf("%d%d%d", &x, &y, &x_y);
    82             my_map[x][y] += x_y;
    83         }
    84         printf("Case %d: %d
    ", i, my_dinic());
    85     }
    86     return 0;
    87 }
  • 相关阅读:
    C# 多线程传递参数或多个参数
    InnoSetup汉化版打包工具下载-附带脚本模板
    C#使用Protobuf协议-源码分析-附带项目文件
    百度云百度网盘VIP不限速破解版绿色版-实测可用
    (实测可用)GTA5侠盗猎车5中文版破解版迅雷下载地址种子
    串口助手下载-带时间戳的串口助手-极简串口助手-V1.1 自动保存配置参数 能显示收发时间方便调试
    c#tcp多线程服务器实例代码
    C# MVC VS WebAPI
    Android VS IOS
    js玩转数字----取整,四舍五入,数字字符串转换
  • 原文地址:https://www.cnblogs.com/GetcharZp/p/9485069.html
Copyright © 2011-2022 走看看