洛谷1231 教辅的组成(网络流)

biubiu~

【题目分析】

板啊。。。。。调了那么久啊。。。。。

这道题与Dining一题几乎一模一样啊。。。。。写的时候还是忘了拆点。。。。。。调了好久才想起。

建图顺序为练习册(答案)---书---书---答案(练习册)

根据给出关系建边即可。

【代码~】

#include<bits/stdc++.h>
using namespace std;
const int MAXN=1e5+10;
const int MAXM=1e6+10;
const int INF=0x3f3f3f3f;

int n1,n2,n3,m1,m2,s,t,cnt;
int head[MAXN],depth[MAXN],cur[MAXN];
int nxt[MAXM],to[MAXM],w[MAXM];

void Add(int x,int y,int z)
{
	nxt[cnt]=head[x];
	head[x]=cnt;
	to[cnt]=y;
	w[cnt]=z;
	cnt++;
}

void add(int x,int y,int z)
{
	Add(x,y,z);
	Add(y,x,0);
}

bool bfs()
{
	queue<int> q;
	memset(depth,0,sizeof(depth));
	depth[s]=1;
	q.push(s);
	while(!q.empty())
	{
		int u=q.front();
		q.pop();
		for(int i=head[u];i!=-1;i=nxt[i])
		{
			int v=to[i];
			if(depth[v]==0&&w[i])
			{
				depth[v]=depth[u]+1;
				q.push(v);
			}
		}
	}
	if(depth[t]==0)
	  return false;
	return true;
}

int dfs(int u,int dist)
{
	if(u==t)
	  return dist;
	for(int &i=cur[u];i!=-1;i=nxt[i])
	{
		int v=to[i];
		if(depth[v]==depth[u]+1&&w[i])
		{
			int di=dfs(v,min(dist,w[i]));
			if(di>0)
			{
				w[i]-=di;
				w[i^1]+=di;
				return di;
			}
		}
	}
	return 0;
}

int dinic()
{
	int ans=0;
	while(bfs())
	{
		for(int i=s;i<=t;++i)
		  cur[i]=head[i];
		while(int d=dfs(s,INF))
		  ans+=d;
	}
	return  ans;
}

int main()
{
	memset(head,-1,sizeof(head));
	scanf("%d%d%d",&n1,&n2,&n3);
	s=0,t=n2+n1+n1+n3+1;
	scanf("%d",&m1);
	for(int i=1;i<=n2;++i)
	  add(s,i,1);
	for(int i=1;i<=n3;++i)
	  add(i+n2+n1+n1,t,1);
	for(int i=1;i<=n1;++i)
	  add(i+n2,i+n2+n1,1);
	for(int i=1;i<=m1;++i)
	{
		int x,y;
		scanf("%d%d",&x,&y);
		add(y,x+n2,1);
	}
	scanf("%d",&m2);
	for(int i=1;i<=m2;++i)
	{
		int x,y;
		scanf("%d%d",&x,&y);
		add(x+n2+n1,y+n2+n1+n1,1);
	}
	printf("%d\n",dinic());
	return 0;
}

 

posted @ 2018-10-18 07:47  Ishtar~  阅读(121)  评论(0编辑  收藏  举报