POJ 1469 解题报告

这道题是求最大二分匹配,有匈牙利算法(感觉就是DFS)。这里照搬了之前3041和1274的代码,用的还是邻接矩阵,直接就过了。

thestoryofsnow1469Accepted192K469MSC++2659B
/* 
ID: thestor1 
LANG: C++ 
TASK: poj1469 
*/
#include <iostream>
#include <fstream>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <limits>
#include <string>
#include <vector>
#include <list>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <algorithm>
#include <cassert>

using namespace std;
// See http://www.geeksforgeeks.org/maximum-bipartite-matching/ for more detailed explanation

const int MAXP = 100;
const int MAXN = 300;

// A DFS based recursive function that returns true if a
// matching for vertex u is possible
bool DFS(int u, const bool adjMatrix[][MAXN], const int N, const int M, int match[], bool visited[])
{
	// Try every job one by one
	for (int v = 0; v < M; ++v)
	{
		// If applicant u is interested in job v and v is
		// not visited
		if (adjMatrix[u][v] && !visited[v])
		{
			// Mark v as visited
			visited[v] = true;

			// If job 'v' is not assigned to an applicant OR
			// previously assigned applicant for job v (which is match[v]) 
			// has an alternate job available.
			// Since v is marked as visited in the above line, match[v] 
			// in the following recursive call will not get job 'v' again
			if (match[v] < 0 || DFS(match[v], adjMatrix, N, M, match, visited))
			{
				match[v] = u;
				return true;
			}
		}
	}

	return false;
}

// Returns maximum number of matching from N to M

// match: An array to keep track of the applicants assigned to jobs. 
// The value of match[i] is the applicant number
// assigned to job i, the value -1 indicates nobody is assigned.
int maximumBipartiteMatching(const bool adjMatrix[][MAXN], const int N, const int M, int match[], bool visited[])
{
	// Count of jobs assigned to applicants
	int mbm = 0;

	// Initially all jobs are available
	memset(match, -1, M * sizeof(int));

	for (int u = 0; u < N; ++u)
	{
		// Mark all jobs as not seen for next applicant.
		memset(visited, false, M * sizeof(bool));

		// Find if the applicant 'u' can get a job
		if (DFS(u, adjMatrix, N, M, match, visited))
		{
			mbm++;
		}
	}
	return mbm;
}

int main()
{
	bool adjMatrix[MAXP][MAXN];
	int match[MAXN];
	bool visited[MAXN];

	int T;
	scanf("%d", &T);
	for (int t = 0; t < T; ++t)
	{
		int P, N;
		scanf("%d%d", &P, &N);
		for (int p = 0; p < P; ++p)
		{
			memset(adjMatrix[p], false, N * sizeof(bool));
		}
		for (int p = 0; p < P; ++p)
		{
			int C;
			scanf("%d", &C);
			for (int c = 0; c < C; ++c)
			{
				int s;
				scanf("%d", &s);
				adjMatrix[p][s - 1] = true;
			}
		}
		if (N >= P && maximumBipartiteMatching(adjMatrix, P, N, match, visited) == P)
		{
			printf("YES\n");
		}
		else
		{
			printf("NO\n");
		}
	}
		
	return 0;  
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值