博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[USACO06NOV]玉米田Corn Fields(动态规划,状态压缩)
阅读量:5066 次
发布时间:2019-06-12

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

题目描述

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的余数。

思路:

简单的状态压缩

我们按每一行来处理

我们先预处理所有状态

同时将每一列土地的情况转化成二进制

然后枚举状态

如果这个状态下会用到贫瘠的土地,跳过

如果有相邻,跳过

都没有的话枚举上一行的状态

则这种状态的情况dp[i][j]有sum(dp[i-1][与当前状态没有临边的情况])

代码:

#include
#include
#include
#include
#define rii register int i#define rij register int j#define rik register int k#define p 100000000using namespace std;long long dp[15][1<<12],n,m,mc[15][15],pd[1<<12],li[15],an;int main(){// freopen("case.in","r",stdin);// freopen("case.out","w",stdout); scanf("%d%d",&n,&m); for(rii=1;i<=n;i++) { for(rij=1;j<=m;j++) { cin>>mc[i][j]; if(mc[i][j]==1) { mc[i][j]=0; } else { mc[i][j]=1; } } } for(rii=1;i<=n;i++) { for(rij=1;j<=m;j++) { li[i]=li[i]<<1; li[i]+=mc[i][j]; } }// for(rii=1;i<=n;i++)// {// cout<
<

 

转载于:https://www.cnblogs.com/ztz11/p/9400418.html

你可能感兴趣的文章
使用 JointCode.Shuttle 访问任意 AppDomain 的服务
查看>>
sqlite的坑
查看>>
digitalocean --- How To Install Apache Tomcat 8 on Ubuntu 16.04
查看>>
【题解】[P4178 Tree]
查看>>
Jquery ui widget开发
查看>>
更改git仓库地址
查看>>
有标号DAG计数 [容斥原理 子集反演 组合数学 fft]
查看>>
Recipe 1.4. Reversing a String by Words or Characters
查看>>
Rule 1: Make Fewer HTTP Requests(Chapter 1 of High performance Web Sites)
查看>>
sql注入
查看>>
「破解」Xposed强
查看>>
src与href的区别
查看>>
ABAP工作区,内表,标题行的定义和区别
查看>>
《xxx重大需求征集系统的》可用性和可修改性战术分析
查看>>
Python 中 创建类方法为什么要加self
查看>>
关于indexOf的使用
查看>>
【转】JS生成 UUID的四种方法
查看>>
英语单词
查看>>
centos6.8下安装matlab2009(图片转帖)
查看>>
Mongo自动备份
查看>>