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 }
  • 相关阅读:
    [SHOI2015]零件组装机
    [AH2017/HNOI2017]影魔
    空指针RE第一次公开赛-笔记
    i春秋2020新春公益赛WP
    博客园Markdown编辑器修改代码配色、添加代码行号
    buuctf Writeup
    关于Tarjan的一些问题
    NOIP2013D1T3货车运输 (生成树+树链剖分)
    1051: [HAOI2006]受欢迎的牛 (tarjan强连通分量+缩点)
    CodeForces 438D The Child and Sequence (线段树 暴力)
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/6435390.html
Copyright © 2011-2022 走看看