博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
P1879 [USACO06NOV]玉米田Corn Fields 状态压缩dp
阅读量:3904 次
发布时间:2019-05-23

本文共 1748 字,大约阅读时间需要 5 分钟。

题目描述

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.

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

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

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

输入输出格式

输入格式:

 

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

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

 

输出格式:

 

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

 

输入输出样例

输入样例#1: 复制

2 31 1 10 1 0

输出样例#1: 复制

9

代码如下:

#include 
using namespace std;const int maxn=1<<15;const int Mod=100000000;int m,n;int f[15][maxn];int F[15];int a[15][15];int judge[maxn];int main(){ memset (F,0,sizeof(F)); scanf("%d%d",&m,&n); for (int i=1;i<=m;i++) { for (int j=1;j<=n;j++) { scanf("%d",&a[i][j]); F[i]=(F[i]<<1)+a[i][j]; } } int Max=1<
>1)==0); } memset (f,0,sizeof(f)); f[0][0]=1; for (int i=1;i<=m;i++) { for (int j=0;j

 

转载地址:http://mgaen.baihongyu.com/

你可能感兴趣的文章
bash日期格式转换(去掉无意义的零)的可选方法
查看>>
常用计算机端口解释
查看>>
转载)保护眼睛,把电脑窗口背景设置成绿颜色
查看>>
FireFox 的强大Web开发插件
查看>>
ANT的基础介绍
查看>>
MIME相关
查看>>
WAP1.0与WAP2.0页面的DTD
查看>>
如何学好C++语言
查看>>
包的设计原则
查看>>
回顾时光 详解HTML的发展史
查看>>
用移动硬盘安装win7
查看>>
MinGW与Cygwin
查看>>
C/C++/VC++的好网站
查看>>
用WEB标准进行开发
查看>>
[译]关于Android图形系统的一些事实真相
查看>>
J2ME下的Zlib/Gzip/Zip压缩相关
查看>>
Android 模拟器中AVD路径的修改(WIN7)
查看>>
Cygwin 的安装配置
查看>>
Cygwin基本命令的使用方法
查看>>
Java本地接口(JNI)编程指南和规范(第二章)
查看>>