题目大意
尼克在一家养猪场工作,这家养猪场共有 M 间锁起来的猪舍,由于猪舍的钥匙都给了客户,所以尼克没有办法打开这些猪舍。有 N 个客户从早上开始一个接一个来购买生猪,他们到达后首先用手中的钥匙打开他所能打开的全部猪舍,然后从中选取他要买的猪,尼克可以在此期间将打开的猪舍中的猪调整到其它开着的猪舍中,每个猪舍能存放的猪的数量是没有任何限制的。买完猪后客户会将他打开的猪舍关上。
好在尼克事先知道每位客户手中有哪些钥匙,要买多少猪,以及客户到来的先后次序。请你写一个程序,帮助尼克求出最多能卖出多少头猪。
思路
网络瘤
建超级源,超级汇
然后对每个猪圈第一位顾客连容量为猪个数的边
若i在j前去过某个猪圈,则i,j连inf的边
每个顾客向t连其购买量的边
然后就A了
code:
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<string>
#include<cstring>
using namespace std;
int n,m,s,t,x,y,tot=2,head[20001],dep[20001],l,r,u[20001],ss,r2;
long long w,ans;
long long mn(long long x,long long y)
{
return (x>y?y:x);
}
struct f{
int to,net;
long long w;
} a[1000011];
int q[4][2]={{0,1},{1,0},{-1,0},{0,-1}};
void add(int x,int y,long long w)
{
a[tot].to=y,a[tot].w=w,a[tot].net=head[x],head[x]=tot++;
return;
}
bool bfs()
{
memset(dep,0,sizeof(dep));
l=0,r=0;
u[r++]=s;
dep[s]=1;
while (l<r)
{
r2=r;
for (int i=l;i<r;i++)
{
for (int j=head[u[i]];j;j=a[j].net)
{
if (a[j].w!=0&&dep[a[j].to]==0)
{
u[r2++]=a[j].to;
dep[a[j].to]=dep[u[i]]+1;
}
}
}
l=r,r=r2;
}
return dep[t];
}
long long dfs(int d,long long in)
{
if (d==t) return in;
long long out=0;
int uw=dep[d]+1;
for (int j=head[d];j&∈j=a[j].net)
{
if (a[j].w==0||dep[a[j].to]!=uw) continue;
long long s=dfs(a[j].to,mn(in,a[j].w));
out+=s,in-=s;
a[j].w-=s,a[j^1].w+=s;
}
if (out==0)
{
dep[d]=0;
}
return out;
}
bool pts[20001];
int uts[20001],ttt[2001][201];
int main()
{
cin>>n>>m;
s=m+1,t=m+2;
for (int i=1;i<=n;i++)
{
scanf("%d",&uts[i]);
}
for (int i=1;i<=m;i++)
{
int x,y;
scanf("%d",&x);
for (int j=1;j<=x;j++)
{
int u;
scanf("%d",&u);
if (pts[u]==0)
{
add(s,i,uts[u]);
add(i,s,0);
pts[u]=1;
}
for (int k=1;k<=ttt[u][0];k++)
{
add(ttt[u][k],i,1e18);
add(i,ttt[u][k],0);
}
ttt[u][++ttt[u][0]]=i;
}
scanf("%d",&y);
add(i,t,y);
add(t,i,y);
}
while (bfs())
{
ans+=dfs(s,1e21);
}
cout<<ans;
return 0;
}