Uva(10330)

这题的题意是给出n的点,每个点有容量限制,然后给出每条边的运输的容量,问你从XX城市运送电量到YY城市最大的电量是多少。。

最大流的模板题,直接用EK算法。。XX城市设定0,YY城市为n+1。还有一点要注意的是在求最小的残量的是还要看每个顶点容量。。

#include<stdio.h>
#include<string.h>
#include<iostream>
#include<queue>
#include<algorithm>
using namespace std;
const int inf=99999999;
const int N=110;
int f[N],a[N],cap[N][N],flow[N][N],p[N];
using namespace std;
int n;
int F;
int s,t;
void EK_()
{
    queue<int>q;
    memset(flow,0,sizeof(flow));
    for(;;)
    {
        memset(a,0,sizeof(a));
        q.push(s);
        a[s]=inf;
        while(!q.empty())
        {
            int u=q.front();
            q.pop();
            for(int v=0;v<=n+1;v++)
            {
            if(!a[v]&&cap[u][v]>flow[u][v]&&flow[u][v]<f[u]&&flow[u][v]<f[v])//看当前流量是否小于顶点的容量
            {
            p[v]=u;
            q.push(v);
            a[v]=min(a[u],cap[u][v]-flow[u][v]);
            a[v]=min(a[v],f[u]-flow[u][v]);
            a[v]=min(a[v],f[v]-flow[u][v]);//在边之间的容量和顶点之间的容量求一个最小值作为最小的残量
            }
        }
        }
        if(a[t]==0)
        break;
        for(int u=t;u!=s;u=p[u])
        {
            flow[p[u]][u]+=a[t];
            flow[u][p[u]]-=a[t];
        }
        F+=a[t];
    }
}
int main()
{
    while(scanf("%d",&n)!=EOF)
    {
        s=0,t=n+1;
        F=0;
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&f[i]);
        }
        int m;
        scanf("%d",&m);
        int aa,b,c;
        memset(cap,0,sizeof(cap));
        while(m--)
        {
            scanf("%d %d %d",&aa,&b,&c);
            cap[aa][b]=c;
        }
        int B,D;
        scanf("%d %d",&B,&D);
        int x;
        for(int i=0;i<B;i++)
        {
            scanf("%d",&x);
            cap[0][x]=inf;
        }
        for(int i=0;i<D;i++)
        {
            scanf("%d",&x);
            cap[x][n+1]=inf;
        }
        f[0]=f[n+1]=inf;
        EK_();
        printf("%d\n",F);
    }
    return 0;
}
时间: 2024-10-16 15:38:46

Uva(10330)的相关文章

uva 10330 Power Transmission (最大流 + 拆点)

uva 10330 Power Transmission 如果对最大流不熟悉的话可以先去看看这个 题目大意:先来讲解一下INPUT.首先读入一个正整数N, 接下来N个数据是N个调节器的容量:然后读入一个正整数M, 接下来M组数据代表的是M条调节器与调解器之间的线路(调节器u, 调节器v, 容量);最后的一组数据先是两个正整数a和b, 接下来的a个数据代表的是初始的调节器,最后的b个数据代表的是终结的调节器. 综上,求最大流. 解题思路:源点或汇点不唯一的时候,记得要增加超级源点或超级汇点来使得源

UVA 10330 Power Transmission(网络最大流)

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=1271  Power Transmission  The Problem DESA is taking a new project to transfer power. Power is generated by the newly established plant in Barisal.

UVA 10330 Power Transmission

题意:懒得打了.LUCKY CAT 里有 http://163.32.78.26/homework/q10330.htm 第一个网络流题目.每个节点都有一个容量值.需要拆点.拆成i - > i + N  边权为容量值 另外注意B个点 连接方式:s - 集合B D个点 链接方式 集合D + N -> t汇点 其他看处理就好 #include <map> #include <set> #include <list> #include <cmath>

UVA 562 Dividing coins --01背包的变形

01背包的变形. 先算出硬币面值的总和,然后此题变成求背包容量为V=sum/2时,能装的最多的硬币,然后将剩余的面值和它相减取一个绝对值就是最小的差值. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; #define N 50007 int c[102],d

UVA 10341 Solve It

Problem F Solve It Input: standard input Output: standard output Time Limit: 1 second Memory Limit: 32 MB Solve the equation: p*e-x + q*sin(x) + r*cos(x) + s*tan(x) + t*x2 + u = 0 where 0 <= x <= 1. Input Input consists of multiple test cases and te

UVA 11014 - Make a Crystal(容斥原理)

UVA 11014 - Make a Crystal 题目链接 题意:给定一个NxNxN的正方体,求出最多能选几个整数点.使得随意两点PQ不会使PQO共线. 思路:利用容斥原理,设f(k)为点(x, y, z)三点都为k的倍数的点的个数(要扣掉一个原点O).那么全部点就是f(1),之后要去除掉共线的,就是扣掉f(2), f(3), f(5)..f(n).n为素数.由于这些素数中包括了合数的情况,而且这些点必定与f(1)除去这些点以外的点共线,所以扣掉.可是扣掉后会扣掉一些反复的.比方f(6)在f

[UVa] Palindromes(401)

UVA - 401 Palindromes Time Limit: 3000MS   Memory Limit: Unknown   64bit IO Format: %lld & %llu Submit Status Description A regular palindrome is a string of numbers or letters that is the same forward as backward. For example, the string "ABCDED

uva 401.Palindromes

题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=342 题目意思:给出一段字符串(大写字母+数字组成).判断是否为回文串 or 镜像串 or 回文镜像串 or 什么都不是.每个字母的镜像表格如下 Character Reverse Character Reverse Character Reverse A A M M Y Y B

[2016-02-19][UVA][129][Krypton Factor]

UVA - 129 Krypton Factor Time Limit: 3000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu Submit Status Description You have been employed by the organisers of a Super Krypton Factor Contest in which contestants have very high mental and physica