zoukankan      html  css  js  c++  java
  • POJ2411 Mondriaan's Dream

    Squares and rectangles fascinated the famous Dutch painter Piet Mondriaan. One night, after producing the drawings in his 'toilet series' (where he had to use his toilet paper to draw on, for all of his paper was filled with squares and rectangles), he dreamt of filling a large rectangle with small rectangles of width 2 and height 1 in varying ways. 

    Expert as he was in this material, he saw at a glance that he'll need a computer to calculate the number of ways to fill the large rectangle whose dimensions were integer values, as well. Help him, so that his dream won't turn into a nightmare!

    Input

    The input contains several test cases. Each test case is made up of two integer numbers: the height h and the width w of the large rectangle. Input is terminated by h=w=0. Otherwise, 1<=h,w<=11.

    Output

    For each test case, output the number of different ways the given rectangle can be filled with small rectangles of size 2 times 1. Assume the given large rectangle is oriented, i.e. count symmetrical tilings multiple times.

    Sample Input

    1 2
    1 3
    1 4
    2 2
    2 3
    2 4
    2 11
    4 11
    0 0
    

    Sample Output

    1
    0
    1
    2
    3
    5
    144
    51205

    又是这道题2333

    这次写了插头DP练手

     1 /*by SilverN*/
     2 #include<algorithm>
     3 #include<iostream>
     4 #include<cstring>
     5 #include<cstdio>
     6 #include<cmath>
     7 #define LL long long
     8 using namespace std;
     9 LL f[2][1<<11];
    10 int n,m;
    11 int main(){
    12     int i,j;
    13     while(scanf("%d%d",&n,&m) && n && m){
    14         memset(f,0,sizeof f);
    15         if(n*m%2){printf("0
    ");continue;}
    16         if(n<m)swap(n,m);
    17         int now=0,pre=1,ed=(1<<m)-1;
    18         f[now][ed]=1;
    19         for(i=1;i<=n;i++){
    20             for(j=0;j<m;j++){
    21                 swap(now,pre);
    22                 memset(f[now],0,sizeof f[now]);
    23                 for(int k=0;k<=ed;k++){
    24                     int x=k&(1<<(j-1));
    25                     int y=k&(1<<j);
    26                     if(j>0 && !x && y)f[now][k|1<<(j-1)]+=f[pre][k];
    27                     if(!y)f[now][k|(1<<j)]+=f[pre][k];
    28                     if(y)f[now][k^(1<<j)]+=f[pre][k];
    29                 }
    30             }
    31         }
    32         printf("%lld
    ",f[now][ed]);
    33     }
    34     return 0;
    35 }
  • 相关阅读:
    关于白盒测试的心得
    基于Java的闰年测试
    等价类划分练习的代码实现
    软件测试中的等价类划分练习
    关于软件测试的初学小结
    现代软件工程作业第十二题(原十四题)
    好像木有白盒测试实验的报告,补一个~
    给大家推荐一本书啊啊~
    关于【做一名软件测试工程师,需要具备什么】的我的看法
    关于考试的笔记整理
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/6435390.html
Copyright © 2011-2022 走看看