HDU 1083 二分图匹配


建立二分图,x集合是课程,y集合是学生。我们求最大匹配数,如果最大匹配数等于|x|那么每个课程都可以找到一个代表,反之找不到

#pragma warning(disable:4996);
#include <algorithm>
#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <queue>
#include <new>
#include <set>
#include <map>

using namespace std;

typedef long long int LL;
const double pi = (acos(-1));
const int maxn = 1000;
int g[maxn][maxn], used[maxn], link[maxn];
int nx, ny;

bool dfs (int u) {
	for (int v = 1; v <= ny; v++) {
		if (g[u][v] && !used[v]) {
			used[v] = 1;
			if (link[v] == -1 || dfs (link[v])) {
				link[v] = u;
				return true;
			}
		}
	}
	return false;
}

int maxmatch () {
	int res = 0;
	memset (link, -1, sizeof (link));
	for (int i = 1; i <= nx; i++) {
		memset (used, 0, sizeof (used));
		if (dfs (i)) res++;
	}
	return res;
}

int main()
{
	//freopen("D:\\Test_in.txt", "r", stdin);
	//freopen("D:\\Test_out.txt", "w", stdout);
	int T;
	scanf ("%d", &T);
	while (T--) {
		scanf ("%d%d", &nx, &ny);
		memset (g, 0, sizeof (g));
		for (int i = 1; i <= nx; i++) {
			int n;
			scanf ("%d", &n);
			for (int j = 0; j < n; j++) {
				int a;
				scanf ("%d", &a);
				g[i][a] = 1;
			}
		}

		int ans = maxmatch ();
		if (ans == nx) printf ("YES\n");
		else printf ("NO\n");
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值