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 }
  • 相关阅读:
    WPF 如何引入外部样式
    jQuery插件-json2.js
    前端js几种加密/解密方法
    asp.net Web项目中使用Log4Net进行错误日志记录
    UpdateProgress
    UpdatePanel的简单用法(非嵌套)
    UpdatePanel的用法详解
    asp.net调用前台js调用后台代码分享
    JVM中的运行参数
    为什么要对jvm进行优化
  • 原文地址:https://www.cnblogs.com/SilverNebula/p/6435390.html
Copyright © 2011-2022 走看看