NYOJ 239 月老的难题(二分图匹配)

题目连接:http://acm.nyist.edu.cn/JudgeOnline/problem.php?pid=239

简单的二分图入门题。。。

 
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;

#define CLR(arr,v) memset(arr,v,sizeof(arr))

template<int MaxV,int MaxE>
class Graph{
public:
	void Clear(){
		pos = 0; CLR(H,-1);
	}
	void add(int u,int v,int c){
		Num[pos] = v;
		Len[pos] = c;
		Next[pos] = H[u];
		H[u] = pos++;
	}
	int H[MaxV],Num[MaxE],Len[MaxE],Next[MaxE],pos;
};

const int MaxV = 505;
Graph<MaxV,MaxV*MaxV> g;
class MaxNumMatch{
public:
	void Clear(){
		CLR(Match,-1); g.Clear();
	}
	int GetMaxNumMatch(int s,int t){
		int MatchNum = 0;
		for(int i = s;i <= t;++i){
			CLR(Vist,false);
			if(Dfs(i)) MatchNum++;
		}
		return MatchNum;
	}
	bool Dfs(int cur){
		for(int i = g.H[cur];i != -1;i = g.Next[i])
		{
			if(!Vist[ g.Num[i] ]){
				Vist[ g.Num[i] ] = true;
				if(Match[ g.Num[i] ] == -1 || Dfs(Match[ g.Num[i] ]))
				{
					Match[ g.Num[i] ] = cur;
					return true;
				}
			}
		}
		return false;
	}
private:
	int Match[MaxV];
	bool Vist[MaxV];
};

MaxNumMatch g1;

int main()
{
	int T;
	scanf("%d",&T);
	while(T--)
	{
		g1.Clear();
		int n,m,b,e;
		scanf("%d%d",&n,&m);
		for(int i = 1;i <= m;++i)
		{
			scanf("%d%d",&b,&e);
			g.add(b,e,0);
		}
		cout<<g1.GetMaxNumMatch(1,n)<<endl;
	}
	return 0;
}        


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值