码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 3254 Corn Fields | 状压DP

时间:2018-01-08 20:13:30      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:style   amp   mat   mes   状态   main   lan   oss   str   

题目:

http://poj.org/problem?id=3254


题解:

把一行压成一个状态

这样枚举每行,枚举这行和上行的状态,判断合法然后转移

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#define N 15
typedef long long ll;
using namespace std;
ll m,n,f[N][1<<N],a[N][N],poss[N],t,ans;
inline bool ok(ll a,ll b)
{
    for (int i=N;i>=0;i--)
    if (!(a&(1<<i)) && (b&(1<<i))!=0 ) return 0;
    if (b & (b<<1)) return 0;
    return 1;
}
int main()
{
    scanf("%lld%lld",&n,&m);t=1<<m;
    for (int i=1;i<=n;i++)
    for (int j=0;j<m;j++)
    {
        scanf("%lld",&a[i][j]);
        if (a[i][j]==1) poss[i]+=(1<<j);
    }
    f[0][0]=1;
      for (int i=1;i<=n;i++)
    for (int j=0;j<t;j++)
        if (ok(poss[i],j))
        for (int k=0;k<t;k++)
            if ((j&k)==0) f[i][j]+=f[i-1][k];
    for (int i=0;i<t;i++)
    ans+=f[n][i];
    printf("%lld\n",ans%100000000);
    return 0;
}

 

POJ 3254 Corn Fields | 状压DP

标签:style   amp   mat   mes   状态   main   lan   oss   str   

原文地址:https://www.cnblogs.com/mrsheep/p/8244605.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!