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 }
  • 相关阅读:
    dividend = Integer.parseInt(args[0])参数问题
    java异常处理的throw和throws的区别
    NULL,"",String.Empty三者在C#中的区别
    C# 窗体文件下的 MainForm.cs,MainForm.Designer.cs,MainForm.resx,是什么,干什么
    关于MyEclipse,JDK使用的几点收获
    子类会继承父类对于接口的实现
    koa2做请求转发
    ES5中的类与继承
    Docker中部署puppeteer导出pdf
    typescript import 全局node_modules报错
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/6435390.html
Copyright © 2011-2022 走看看