Last active
August 29, 2015 14:02
-
-
Save KT-Yeh/af6d57a88b9a494ecf35 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> | |
#include <cstring> | |
int H, W; | |
bool adjacent[1<<11][1<<11]; | |
long long int dp[13][1<<11]; | |
long long int ans[13][13] = {0}; | |
bool AdjacentCheck(unsigned int, unsigned int); | |
int main() | |
{ | |
while (scanf("%d %d", &H, &W) && (H || W)) { | |
if (ans[H][W]) {printf("%lld\n", ans[H][W]); continue;} | |
if (H < W) {int tmp = H; H = W; W = tmp;} // make W small | |
memset(dp, 0, sizeof(dp)); | |
memset(adjacent, 0, sizeof(adjacent)); | |
for (unsigned int i = 0; i < (1<<W); ++i) | |
for (unsigned int j = 0; j < (1<<W); ++j) | |
if (AdjacentCheck(i, j)) adjacent[i][j] = true; | |
dp[0][0] = 1; | |
for (int row = 0; row < H; ++row) | |
for (unsigned int i = 0; i < (1<<W); ++i) | |
for (unsigned int j = 0; j < (1<<W); ++j) | |
if (adjacent[i][j]) dp[row+1][j] += dp[row][i]; | |
printf("%lld\n", dp[H][0]); | |
ans[H][W] = ans[W][H] = dp[H][0]; | |
} | |
} | |
bool AdjacentCheck(unsigned int a, unsigned int b) | |
{ | |
if ((a & b) != 0) return false; | |
unsigned int ab = a | b; | |
for (int i = 0; i < W; ) { | |
if (ab & (1<<i)) ++i; | |
else { | |
if (i == W-1 || (ab & (1<<(i+1))) != 0) return false; | |
else i+=2; | |
} | |
} | |
return true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment