【洛谷 1879】【USACO06NOV】Corn Fields G【状态压缩】

题目描述
Farmer John has purchased a lush new rectangular pasture composed of M by N (1 ≤ M ≤ 12; 1 ≤ N ≤ 12) square parcels. He wants to grow some yummy corn for the cows on a number of squares. Regrettably, some of the squares are infertile and can’t be planted. Canny FJ knows that the cows dislike eating close to each other, so when choosing which squares to plant, he avoids choosing squares that are adjacent; no two chosen squares share an edge. He has not yet made the final choice as to which squares to plant.

Being a very open-minded man, Farmer John wants to consider all possible options for how to choose the squares for planting. He is so open-minded that he considers choosing no squares as a valid option! Please help Farmer John determine the number of ways he can choose the squares to plant.


中文翻译
农场主 J o h n John John新买了一块长方形的新牧场,这块牧场被划分成 M M M N N N ( 1 ≤ M ≤ 12 ; 1 ≤ N ≤ 12 ) (1 ≤ M ≤ 12; 1 ≤ N ≤ 12) (1M12;1N12),每一格都是一块正方形的土地。 J o h n John John打算在牧场上的某几格里种上美味的草,供他的奶牛们享用。

遗憾的是,有些土地相当贫瘠,不能用来种草。并且,奶牛们喜欢独占一块草地的感觉,于是 J o h n John John不会选择两块相邻的土地,也就是说,没有哪两块草地有公共边。

J o h n John John想知道,如果不考虑草地的总块数,那么,一共有多少种种植方案可供他选择?(当然,把新牧场完全荒废也是一种方案)


输入格式
第一行:两个整数 M M M N N N,用空格隔开。

第2到第 M + 1 M+1 M+1行:每行包含 N N N个用空格隔开的整数,描述了每块土地的状态。第 i + 1 i+1 i+1行描述了第i行的土地,所有整数均为 0 0 0 1 1 1,是 1 1 1的话,表示这块土地足够肥沃, 0 0 0则表示这块土地不适合种草。

输出格式
一个整数,即牧场分配总方案数除以 100 , 000 , 000 100,000,000 100,000,000的余数。


输入输出样例
输入 #1复制
2 3
1 1 1
0 1 0

输出 #1复制
9


解题思路
经我仔细观察,这题是个状压DP。。。

预处理:我们用数组s保存一行中所有可行状态,则s数组可以在预处理过程中用DFS求出。。。

DP:我们设 f [ i ] [ j ] f[i][j] f[i][j]表示第i行状态位j的方案数。。
SO,动态转移方程为 f [ i ] [ s [ j ] ] = ( f [ i ] [ s [ j ] ] + f [ i − 1 ] [ s [ k ] ] ) f[i][s[j]]=(f[i][s[j]]+f[i-1][s[k]])%mod; f[i][s[j]]=(f[i][s[j]]+f[i1][s[k]])
(k为枚举的上一行的状态)

然后我们就可以AC了!!!


代码

#include<algorithm>
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
using namespace std;
const long long mod=100000000;
int n,m,num,x,bsy,a[1<<12],s[1<<12],f[12][1<<12];
void dfs(int ans,int dep)//DFS求出一行中所有可行状态
{
	if(dep>n)
	{
		++num;
		s[num]=ans;
		return;
	}
	dfs(ans,dep+1);
	dfs(ans+(1<<(dep-1)),dep+2);
}
int main(){
	scanf("%d%d",&m,&n);
	for(int i=1;i<=m;i++)
	{
		for(int j=1;j<=n;j++)
		{
			scanf("%d",&x);
			if(x==0)
				a[i]+=1<<(j-1);
		}
	}
	dfs(0,1);
	for(int i=1;i<=num;i++)//第一行预处理
		if(!(a[1]&s[i]))
			f[1][s[i]]=1;
	for(int i=2;i<=m;i++)//枚举行
	{
		for(int j=1;j<=num;j++)//枚举当前行状态
		{
			if(!(a[i]&s[j]))
			{
				for(int k=1;k<=num;k++)//枚举上一行状态
				{
					if(!(s[j]&s[k]))
					f[i][s[j]]=(f[i][s[j]]+f[i-1][s[k]])%mod;
				}
			}
		}
	}
	for(int i=1;i<=num;i++)
		bsy=(bsy+f[m][s[i]])%mod;//统计
	printf("%d",bsy%mod);
} 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值