一、题目描述

We wish to tile a grid 4 units high and N units long with rectangles (dominoes) 2 units by one unit (in either orientation). For example, the figure shows the five different ways that a grid 4 units high and 2 units wide may be tiled.



Write a program that takes as input the width, W , of the grid and outputs the number of different ways to tile a 4-by-W grid.

二、输入

The first line of input contains a single integer N , (1<=N<=1000) which is the number of datasets that follow.

Each dataset contains a single decimal integer, the width, W , of the grid for this problem instance.

三、输出

For each problem instance, there is one line of output: The problem instance number as a decimal integer (start counting at one), a single space and the number of tilings of a 4-by-W grid. The values of W will be chosen so the count will fit in a 32-bit integer.

例如

输入:

3

2

3

7

输出:

1 5

2 11

3 781

四、解题思路

1、问题分析

使用无数个1x2的多米诺骨牌去铺满4xn的棋盘,问有多少种不同的覆盖方法。

这道题可以使用动态规划的方法解。

很明显当n等于1时,只有一种方法,也就是两个都是竖着放。

当n>2时,我们使用一个矩阵matrix[n][m]来表示排在第n列的情况。m表示每列的各格的状态,例如该题有4行,所以m表示的是4位只有0、1状态的数(0表示空,1表示排)。2^4=16,应该有16中状态,但是并不是每种状态都能成立。

状态转移:

matrix[i][0] = matrix[i - 1][15];
matrix[i][3] = matrix[i - 1][15] + matrix[i - 1][12];
matrix[i][6] = matrix[i - 1][15] + matrix[i - 1][9];
matrix[i][9] = matrix[i - 1][6];
matrix[i][12] = matrix[i - 1][15] + matrix[i - 1][3];
matrix[i][15] = matrix[i - 1][15] + matrix[i - 1][12] + matrix[i - 1][6] + matrix[i - 1][3] + matrix[i - 1][0];

初始状态:

matrix[1][0] = matrix[1][3] = matrix[1][6] = matrix[1][12] = matrix[1][15] = 1;

状态转移图(灰色表示不填充,橙色表示填充)

1)matrix[i - 1][15] 转移到 matrix[i][0]:

2)matrix[i - 1][15] 转移到matrix[i][3]:

3)matrix[i - 1][12] 转移到matrix[i][3]:

4)matrix[i - 1][15] 转移到matrix[i][6]:

5)matrix[i - 1][9] 转移到matrix[i][6]:

6)matrix[i - 1][6] 转移到matrix[i][9]:

7)matrix[i - 1][15] 转移到matrix[i][12]:

8)matrix[i - 1][3] 转移到matrix[i][12]:

9)matrix[i - 1][15] 转移到matrix[i][15]:

10)matrix[i - 1][12] 转移到matrix[i][15]:

11)matrix[i - 1][6] 转移到matrix[i][15]:

12)matrix[i - 1][3] 转移到matrix[i][15]:

13)matrix[i - 1][0] 转移到matrix[i][15]:

五、代码

#include<iostream>

using namespace std;

int main()
{
int leng = 1000;
int result; int printNum; int matrix[leng + 1][16];
matrix[1][0] = matrix[1][3] = matrix[1][6] = matrix[1][12] = matrix[1][15] = 1;
matrix[1][9] = 0;
for(int i = 2; i < leng + 1; i++)
{ matrix[i][0] = matrix[i - 1][15];
matrix[i][3] = matrix[i - 1][15] + matrix[i - 1][12];
matrix[i][6] = matrix[i - 1][15] + matrix[i - 1][9];
matrix[i][9] = matrix[i - 1][6];
matrix[i][12] = matrix[i - 1][15] + matrix[i - 1][3];
matrix[i][15] = matrix[i - 1][15] + matrix[i - 1][12] + matrix[i - 1][6] + matrix[i - 1][3] + matrix[i - 1][0];
} cin >> printNum; for(int i = 1; i < printNum + 1; i++)
{
cin >> result;
cout << i << " " << matrix[result][15] << endl;
}
return 0;
}

附:在别人的博客看到另外一种方法,操作起来更简单,但我看不懂(尤其是初始状态a0和b0为什么等于0)。能看懂的朋友,请给我讲解讲解。一下是他的博客http://blog.csdn.net/famousdt/article/details/7480103

<Sicily>Tiling a Grid With Dominoes的更多相关文章

  1. HOJ题目分类

    各种杂题,水题,模拟,包括简单数论. 1001 A+B 1002 A+B+C 1009 Fat Cat 1010 The Angle 1011 Unix ls 1012 Decoding Task 1 ...

  2. Soj题目分类

    -----------------------------最优化问题------------------------------------- ----------------------常规动态规划 ...

  3. DP:0

    小故事: A * "1+1+1+1+1+1+1+1 =?" * A : "上面等式的值是多少" B : *计算* "8!" A *在上面等式 ...

  4. soj1049.Mondriaan

    1049. Mondriaan Constraints Time Limit: 1 secs, Memory Limit: 32 MB Description Squares and rectangl ...

  5. dvtm: 平铺式终端管理器 — LinuxTOY

    dvtm: 平铺式终端管理器 — LinuxTOY LinuxTOY 是一个致力于提供 Linux 相关资讯的专题站点.如果您发现了好用好玩的 Linux 东东并愿意发扬自由.分享的精神,可以点击顶部 ...

  6. ArcGIS Server的切图原理深入(转载)

    http://forum.osgearth.org/template/NamlServlet.jtp?macro=search_page&node=2174485&query=arcg ...

  7. ArcGIS Server的切图原理深入【转】

    http://blog.newnaw.com/?p=69 GoogleMap,Virtual Earth,YahooMap等,目前所有的WebGIS都使用了缓存机制以提高地图访问速度.原理都是将地图设 ...

  8. uva 11270 - Tiling Dominoes(插头dp)

    题目链接:uva 11270 - Tiling Dominoes 题目大意:用1∗2木块将给出的n∗m大小的矩阵填满的方法总数. 解题思路:插头dp的裸题,dp[i][s]表示第i块位置.而且该位置相 ...

  9. 【UVa】11270 Tiling Dominoes

    http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&p ...

随机推荐

  1. HDU 5353 Average

    Problem Description There are n soda sitting around a round table. soda are numbered from 1 to n and ...

  2. silverlight wpf DataTemplate Command binding

    <Grid x:Name="LayoutRoot" Background="White"> <CommonControl:NoapDataGr ...

  3. hdoj--4857--逃生(拓扑排序+反向建图)

    逃生 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submiss ...

  4. 实战c++中的vector系列--正确释放vector的内存(clear(), swap(), shrink_to_fit())

    关于vector已经写的差不多了,似乎要接近尾声了,从初始化到如何添加元素再到copy元素都有所涉及,是时候谈一谈内存的释放了. 是的,对于数据量很小的vector,完全没必要自己进行主动的释放,因为 ...

  5. Android eclipse 运行项目设置程序默认安装到SD卡

    Android eclipse 运行项目设置程序默认安装到SD卡  1.在Android手机启用USB调试功能 2.在Windows系统中打开命令提示符(开始菜单,选择运行,输入cmd回车即可),使用 ...

  6. kettle工具的设计模块

    大家都知道,每个ETL工具都用不同的名字来区分不同的组成部分.kettle也不例外. 比如,在 Kettle的四大不同环境工具 本博客,是立足于kettle工具的设计模块的概念介绍. 1.转换 转换( ...

  7. Linux学习02--Linux一切皆文件

    Linux学习第二部 Linux一切皆对象 啊啊啊啊啊,今天被学妹说太直了,嘤嘤嘤. 学习linux两三天了,前期感觉并不难,只是命令多,多记记多敲一敲就能都记住了.希望自己能够坚持下去吧! 下面是根 ...

  8. MySQL 高可用:mysql+mycat实现数据库分片(分库分表)

    本文引用于http://blog.csdn.net/kk185800961/article/details/51147029 MySQL 高可用:mysql+mycat实现数据库分片(分库分表) 什么 ...

  9. 题解 洛谷 P3376 【【模板】网络最大流】

    本人很弱,只会Dinic.EK与Ford-Fulkerson...(正在学习ISAP...) 这里讲Dinic... Dinic:与Ford-Fulkerson和的思路相似(话说好像最大流求解都差不多 ...

  10. PID三种参数的理解

    来源:http://blog.gkong.com/liaochangchu_117560.ashx PID是比例.积分.微分的简称,PID控制的难点不是编程,而是控制器的参数整定.参数整定的关键是正确 ...