POJ2441-Arrange the Bulls

解决n头牛在m个牛棚中的分配问题,确保每头牛都能位于自己喜欢的牛棚且不与其他牛共用同一牛棚。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Arrange the Bulls
Time Limit: 4000MS Memory Limit: 65536K
Total Submissions: 5108 Accepted: 1963

Description

Farmer Johnson's Bulls love playing basketball very much. But none of them would like to play basketball with the other bulls because they believe that the others are all very weak. Farmer Johnson has N cows (we number the cows from 1 to N) and M barns (we number the barns from 1 to M), which is his bulls' basketball fields. However, his bulls are all very captious, they only like to play in some specific barns, and don’t want to share a barn with the others.

So it is difficult for Farmer Johnson to arrange his bulls, he wants you to help him. Of course, find one solution is easy, but your task is to find how many solutions there are. 

You should know that a solution is a situation that every bull can play basketball in a barn he likes and no two bulls share a barn. 

To make the problem a little easy, it is assumed that the number of solutions will not exceed 10000000.

Input

In the first line of input contains two integers N and M (1 <= N <= 20, 1 <= M <= 20). Then come N lines. The i-th line first contains an integer P (1 <= P <= M) referring to the number of barns cow i likes to play in. Then follow P integers, which give the number of there P barns.

Output

Print a single integer in a line, which is the number of solutions.

Sample Input

3 4
2 1 4
2 1 3
2 2 4

Sample Output

4

Source



题意:n头牛,m个位置,每头牛有各自喜欢的位置,问安排这n头牛使得每头牛都在各自喜欢的位置有几种方法

解题思路:状态压缩,dp[i]记录安排好的牛的集合为i有几种方法


#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <set>

using namespace std;

#define LL long long
const int INF = 0x3f3f3f3f;

int dp[1 << 22], s[30], nt[500], e[500];
int n, m;

int main()
{
	while (~scanf("%d%d", &n, &m))
	{
		memset(s, -1, sizeof s);
		int cnt = 1;
		int p, a;
		for (int i = 0; i<n; i++)
		{
			scanf("%d", &p);
			for (int j = 1; j <= p; j++)
			{
				scanf("%d", &a), a--;
				nt[cnt] = s[a], s[a] = cnt, e[cnt++] = i;
			}
		}
		if (n > m) { printf("0\n"); continue; }
		memset(dp, 0, sizeof dp);
		dp[0] = 1;
		for (int i = 0; i < m; i++)
		{
			for (int j = (1 << n) - 2; j >= 0; j--)
			{
				if (!dp[j]) continue;
				for (int k = s[i]; ~k; k = nt[k])
				{
					int ee = e[k];
					if ((j&(1 << ee)) == 0) dp[j | (1 << ee)] += dp[j], dp[j | (1 << ee)] %= 10000000;
				}
			}
		}
		printf("%d\n", dp[(1 << n) - 1]);
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值