首页 > 代码库 > 状态压缩动态规划 -- 多米诺骨牌
状态压缩动态规划 -- 多米诺骨牌
用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; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。