POJ3254Corn Fields (状态压缩or插头DP)

Description

Farmer John has purchased a lush new rectangular pasture composed of M by N (1 ≤ M ≤ 12; 1 ≤ N ≤ 12) square parcels. He wants to grow some yummy corn for the cows on a number of squares. Regrettably, some of the squares are infertile and can't be planted. Canny FJ knows that the cows dislike eating close to each other, so when choosing which squares to plant, he avoids choosing squares that are adjacent; no two chosen squares share an edge. He has not yet made the final choice as to which squares to plant.

Being a very open-minded man, Farmer John wants to consider all possible options for how to choose the squares for planting. He is so open-minded that he considers choosing no squares as a valid option! Please help Farmer John determine the number of ways he can choose the squares to plant.

Input

Line 1: Two space-separated integers: M and N 
Lines 2..M+1: Line i+1 describes row i of the pasture with N space-separated integers indicating whether a square is fertile (1 for fertile, 0 for infertile)

Output

Line 1: One integer: the number of ways that FJ can choose the squares modulo 100,000,000.

Sample Input

2 3
1 1 1
0 1 0

Sample Output

9

Hint

Number the squares as follows:
1 2 3
  4  

There are four ways to plant only on one squares (1, 2, 3, or 4), three ways to plant on two squares (13, 14, or 34), 1 way to plant on three squares (134), and one way to plant on no squares. 4+3+1+1=9.

Source

之前做了一下“铺地砖”的题,然后看别人用插头DP做,代码很简洁,于是也打算学习一下插头DP。

这个题应该是比较基础,反正1A了,爽歪歪。

不过第一次写的可能有些丑。

#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<cmath>
using namespace std;
const int Mod=100000000;
int dp[20][1<<12],ans,a[20][20],m,n;
bool check(int u,int x,int y)
{
    for(int i=2;i<=m;i++) if((x&(1<<(i-1)))&&(x&(1<<(i-2)))) return false;
    for(int i=2;i<=m;i++) if((y&(1<<(i-1)))&&(y&(1<<(i-2)))) return false;
    for(int i=1;i<=m;i++) if(!a[u-1][i]&&(x&(1<<(i-1)))) return false;
    for(int i=1;i<=m;i++) if(!a[u][i]&&(y&(1<<(i-1)))) return false;
    for(int i=1;i<=m;i++) if((x&(1<<(i-1)))&&(y&(1<<(i-1)))) return false;
    return true;
}
int main()
{
    int i,j,k;
    while(~scanf("%d%d",&n,&m)){
        for(i=1;i<=n;i++)
         for(j=m;j>=1;j--)
          scanf("%d",&a[i][j]);
        dp[0][0]=1;
        for(i=1;i<=n;i++){
            for(j=0;j<1<<m;j++)
             for(k=0;k<1<<m;k++)
              if(check(i,j,k)) 
               dp[i][k]=(dp[i][k]+dp[i-1][j])%Mod;
        }
        for(i=0;i<1<<m;i++) ans=(ans+dp[n][i])%Mod;
        printf("%d
",ans);
    }
    return 0;
}
原文地址:https://www.cnblogs.com/hua-dong/p/7965561.html