[USACO06NOV]玉米田Corn Fields(动态规划,状态压缩)

题目描述

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.

农场主John新买了一块长方形的新牧场,这块牧场被划分成M行N列(1 ≤ M ≤ 12; 1 ≤ N ≤ 12),每一格都是一块正方形的土地。John打算在牧场上的某几格里种上美味的草,供他的奶牛们享用。

遗憾的是,有些土地相当贫瘠,不能用来种草。并且,奶牛们喜欢独占一块草地的感觉,于是John不会选择两块相邻的土地,也就是说,没有哪两块草地有公共边。

John想知道,如果不考虑草地的总块数,那么,一共有多少种种植方案可供他选择?(当然,把新牧场完全荒废也是一种方案)

输入输出格式

输入格式:

第一行:两个整数M和N,用空格隔开。

第2到第M+1行:每行包含N个用空格隔开的整数,描述了每块土地的状态。第i+1行描述了第i行的土地,所有整数均为0或1,是1的话,表示这块土地足够肥沃,0则表示这块土地不适合种草。

输出格式:

一个整数,即牧场分配总方案数除以100,000,000的余数。

思路:

简单的状态压缩

扫描二维码关注公众号,回复: 2502123 查看本文章

我们按每一行来处理

我们先预处理所有状态

同时将每一列土地的情况转化成二进制

然后枚举状态

如果这个状态下会用到贫瘠的土地,跳过

如果有相邻,跳过

都没有的话枚举上一行的状态

则这种状态的情况dp[i][j]有sum(dp[i-1][与当前状态没有临边的情况])

代码:

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#define rii register int i
#define rij register int j
#define rik register int k
#define p 100000000
using namespace std;
long long dp[15][1<<12],n,m,mc[15][15],pd[1<<12],li[15],an;
int main()
{
//    freopen("case.in","r",stdin);
//    freopen("case.out","w",stdout);
    scanf("%d%d",&n,&m);
    for(rii=1;i<=n;i++)
    {
        for(rij=1;j<=m;j++)
        {
            cin>>mc[i][j];
            if(mc[i][j]==1)
            {
                mc[i][j]=0;
            }
            else
            {
                mc[i][j]=1;
            }
        }
    }
    for(rii=1;i<=n;i++)
    {
        for(rij=1;j<=m;j++)
        {
            li[i]=li[i]<<1;
            li[i]+=mc[i][j];
        }
    }
//    for(rii=1;i<=n;i++)
//    {
//        cout<<li[i]<<endl;
//    }
    for(rii=0;i<=(1<<m)-1;i++)
    {
        if((i&(i<<1))!=0)
        {
            pd[i]=1;
        }
        else
        {
            if((li[1]&i)==0)
            {
                dp[1][i]=1;
            }
        }
    }
//    for(rii=1;i<=(1<<m);i++)
//    {
//        cout<<pd[i]<<" ";
//    }
    for(rii=2;i<=n;i++)
    {
        for(rij=0;j<=(1<<m)-1;j++)
        {
            if((j&li[i])!=0)
            {
                continue;
            }
            if(pd[j]!=0)
            {
                continue;
            }
            else
            {
                for(rik=0;k<=(1<<m)-1;k++)
                {
                    if(pd[k]!=0)
                    {
                        continue;
                    }
                    else
                    {
                        if((k&j)==0)
                        {
                            dp[i][j]+=dp[i-1][k];
                            dp[i][j]%=p;
                        }
                    }
                }
            }
        }
    }
//    long long ans=0;
    for(rii=0;i<=(1<<m)-1;i++)
    {
        an+=dp[n][i];
        an%=p;
//        cout<<an;
    }
//    int ans=an;
    cout<<an;
//    printf("%lld",an);
    return 0;
}

猜你喜欢

转载自www.cnblogs.com/ztz11/p/9400418.html
今日推荐