HDU4280 Island Transport【网络流】

题意:从最左边的点 运人到 最右边的点 最多能运多少人


思路:裸的的最大流,就是卡时间,用邻接表的Dinic


#include<stdio.h>
#include<iostream>
#include<string.h>
#include<string>
#include<stdlib.h>
#include<math.h>
#include<vector>
#include<list>
#include<map>
#include<stack>
#include<queue>
#include<algorithm>
#include<numeric>
#include<functional>
using namespace std;
typedef long long ll;
const int maxn = 100005;

struct Edge
{
	int to,next,cap;
}edge[maxn*3];
int head[maxn],tot,d[maxn];

void init()
{
	memset(head,-1,sizeof head);
	tot = 0;
}

void add(int x,int y,int cap)
{
	edge[tot].to = y;
	edge[tot].cap = cap;
	edge[tot].next = head[x];
	head[x] = tot++;
	
	edge[tot].to = x;
	edge[tot].cap = cap;
	edge[tot].next = head[y];
	head[y] = tot++;
}

bool bfs(int s,int t)
{
    queue<int> p;
    memset(d,0,sizeof(d));
    p.push(s);
    d[s]=1;
    while(!p.empty())
    {
        int top=p.front();
        p.pop();
        if(top==t)
            return true;
        for(int i=head[top]; i!=-1; i=edge[i].next)
        {
            if(!d[edge[i].to] && edge[i].cap>0)
            {
                d[edge[i].to]=d[top]+1;
                p.push(edge[i].to);
            }
        }
    }
    return false;
}

int dfs(int now,int t,int maxf)
{
    int f,res=0;
    if(now==t)
        return maxf;
    for(int i=head[now]; i!=-1; i=edge[i].next)
    {
        if((d[edge[i].to]==d[now]+1)&&edge[i].cap>0)
        {

            f=dfs(edge[i].to,t,min(maxf-res,edge[i].cap));
            edge[i].cap-=f;
            edge[i^1].cap+=f;
            res+=f;
            if(res==maxf)
                return res;
        }
    }
    if(res==0)
        d[now]=0;
    return res;
}

int maxflow(int s,int t)
{
    int res=0;
    while(bfs(s,t))
        res+=dfs(s,t,0x3f3f3f3f);
    return res;
}

int main(void)
{
	int T,n,m;
	scanf("%d",&T);
	while(T--)
	{
			scanf("%d%d",&n,&m);
			init();
			int l = 0x3f3f3f3f,r = -0x3f3f3f3f;
			int s,t;
			for(int i = 1; i <= n; i++)
			{
				int a,b;
				scanf("%d%d",&a,&b);
				if(a < l)
				{
					l = a;
					s = i;
				}
				if(a > r)
				{
					r = a;
					t = i;
				}
			}
			for(int i = 0; i < m; i++)
			{
				int a,b,c;
				scanf("%d%d%d",&a,&b,&c);
				add(a,b,c);
			}
			int ans = maxflow(s,t);
			printf("%d\n",ans);
	}
	return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值