zoukankan      html  css  js  c++  java
  • UVALive 5099

    B - Nubulsa Expo
    Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu

    Description

    Download as PDF
     

    You may not hear about Nubulsa, an island country on the Pacific Ocean. Nubulsa is an undeveloped country and it is threatened by the rising of sea level. Scientists predict that Nubulsa will disappear by the year of 2012. Nubulsa government wants to host the 2011 Expo in their country so that even in the future, all the people in the world will remember that there was a country named ``Nubulsa".

    As you know, the Expo garden is made up of many museums of different countries. In the Expo garden, there are a lot of bi-directional roads connecting those museums, and all museums are directly or indirectly connected with others. Each road has a tourist capacity which means the maximum number of people who can pass the road per second.

    Because Nubulsa is not a rich country and the ticket checking machine is very expensive, the government decides that there must be only one entrance and one exit. The president has already chosen a museum as the entrance of the whole Expo garden, and it's the Expo chief directory Wuzula's job to choose a museum as the exit.

    Wuzula has been to the Shanghai Expo, and he was frightened by the tremendous ``people mountain people sea" there. He wants to control the number of people in his Expo garden. So Wuzula wants to find a suitable museum as the exit so that the ``max tourists flow" of the Expo garden is the minimum. If the ``max tourist flow" is W, it means that when the Expo garden comes to ``stable status", the number of tourists who enter the entrance per second is at most W. When the Expo garden is in ``stable status", it means that the number of people in the Expo garden remains unchanged.

    Because there are only some posters in every museum, so Wuzula assume that all tourists just keep walking and even when they come to a museum, they just walk through, never stay.

    Input

    There are several test cases, and the input ends with a line of ``0 0 0".

    For each test case:

    The first line contains three integers NM and S, representing the number of the museums, the number of roads and the No. of the museum which is chosen as the entrance (all museums are numbered from 1 to N). For example, 5 5 1 means that there are 5 museums and 5 roads connecting them, and the No. 1 museum is the entrance.

    The next M lines describe the roads. Each line contains three integers XY and K, representing the road connects museum X with museum Y directly and its tourist capacity is K.


    Please note:

    1 < N$ le$300, 0 < M$ le$50000, 0 < SXY$ le$N0 < K$ le$1000000

    Output

    For each test case, print a line with only an integer W, representing the ``max tourist flow" of the Expo garden if Wuzula makes the right choice.

    Sample Input

    5 5 1 
    1 2 5 
    2 4 6 
    1 3 7 
    3 4 3 
    5 1 10 
    0 0 0
    

    Sample Output

    8
    /**
        最大流 == 最小割 
    **/
    #include <iostream>
    #include <string.h>
    #include <cmath>
    #include <stdio.h>
    #include <algorithm>
    using namespace std;
    typedef long long ll;
    const int N = 505;
    const ll maxw = 1000007;
    const ll inf = 1e17;
    ll g[N][N], w[N];
    int a[N], v[N], na[N];
    ll mincut(int n) {
        int i, j, pv, zj;
        ll best = inf;
        for(i = 0; i < n; i ++) {
            v[i] = i;
        }
        while(n > 1) {
            for(a[v[0]] = 1, i = 1; i < n; i ++) {
                a[v[i]] = 0;
                na[i - 1] = i;
                w[i] = g[v[0]][v[i]];
            }
            for(pv = v[0], i = 1; i < n; i ++) {
                for(zj = -1, j = 1; j < n; j ++)
                    if(!a[v[j]] && (zj < 0 || w[j] > w[zj])) {
                        zj = j;
                    }
                a[v[zj]] = 1;
                if(i == n - 1) {
                    if(best > w[zj]) {
                        best = w[zj];
                    }
                    for(i = 0; i < n; i ++) {
                        g[v[i]][pv] = g[pv][v[i]] += g[v[zj]][v[i]];
                    }
                    v[zj] = v[--n];
                    break;
                }
                pv = v[zj];
                for(j = 1; j < n; j ++) if(!a[v[j]]) {
                        w[j] += g[v[zj]][v[j]];
                    }
            }
        }
        return best;
    }
    int main()
    {
        int n, m, s;
        while(~scanf("%d %d", &n, &m))
        {
            for(int i = 0; i <= n; i++)
            {
                for(int j = 0; j <= n; j++)
                {
                    g[i][j] = 0;
                }
            }
            int u, v, w;
            for(int i = 0; i < m; i++)
            {
                scanf("%d %d %d", &u, &v, &w);
                 u--;
                 v--;
                g[u][v] += w;
                g[v][u] += w;
            }
            printf("%lld
    ", mincut(n));
        }
        return 0;
    }
  • 相关阅读:
    小程序 短信验证码 倒计时 变量作用域
    File syncing and sharing software with file encryption and group sharing, emphasis on reliability and high performance.
    图片合并与截断
    宽度分离
    无宽度准则
    linux系统/var/log目录下的信息详解
    Connection Phase Packets
    select version();desc mysql.user;
    mysql user password plugin
    Please read "Security" section of the manual to find out how to run mysqld as root!
  • 原文地址:https://www.cnblogs.com/chenyang920/p/4725832.html
Copyright © 2011-2022 走看看