状态压缩动态规划 -- 骨牌


使用1*2 的骨牌通过组合拼成 m * n 的大矩形。问有几种拼法

题目链接:http://poj.org/problem?

id=2411

状态转移:

1.因为上一行的该列竖直放置骨牌为 0。影响到当前行的该列,当前行的该列为 1

2.当前行骨牌横放。上一行骨牌横放。 都为11

3.上一行该列置为 1。当前行当前列立着放为 0


#include <iostream>
#include <cstring>
using namespace std;
#define MAXSIZE 12
int cols, raws;
int col, raw;
long long DP[MAXSIZE][( 1 << MAXSIZE ) - 1];

void search( int col, int cur, int pre ){
    if( col >= cols ){
        if( col == cols ){
            DP[raw][cur] += DP[raw - 1][pre];
        }
        return;
    }
    search( col + 1, cur << 1, pre << 1 | 1 );
    search( col + 1, cur << 1 | 1, pre << 1 );
    search( col + 2, cur << 2 | 3, pre << 2 | 3 );
}

int main(){
    while( cin >> raws >> cols ){
        if( raws == 0 && cols == 0 )
            break;
        if( cols > raws ){
            raws = raws ^ cols;
            cols = raws ^ cols;
            raws = raws ^ cols;
        }
        memset( DP, 0, sizeof( DP ) );
        DP[0][( 1 << cols ) - 1] = 1;

        for( raw = 1; raw <= raws; ++raw )
            search( 0, 0, 0 );

        cout << DP[raws][( 1 << cols ) - 1] << endl;
    }
    return 0;
}


版权声明:本文博客原创文章。博客,未经同意,不得转载。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值