POJ 3254 Corn Fields

Source: Internet
Author: User

Corn Fields
Time Limit: 2000 MS Memory Limit: 65536 K
Total Submissions: 5221 Accepted: 2769

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. 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

USACO 2006 November Gold
 

Amazing state compression dp

#include <iostream>   #include <cstring>   #include <cstdio>   #define N 15   #define M 1<<15   #define mod 100000000   using namespace std;  int dp[N][M],sta[M],a[N],Top;  int main()  {      //freopen("data.in","r",stdin);       int n,m;      while(scanf("%d %d",&n,&m)!=EOF)      {          memset(a,0,sizeof(a));          for(int i=1;i<=n;i++)          {              for(int j=1;j<=m;j++)              {                  int x;                  scanf("%d",&x);                  if(x==0)                  {                      a[i]+=(1<<(m-j));                  }              }          }          Top=0;          for(int i=0;i<(1<<(m));i++)          {              if(i&((i)<<1))              {                  continue;              }              sta[Top++] = i;          }          memset(dp,0,sizeof(dp));          for(int i=0;i<=Top-1;i++)          {              if(sta[i]&a[1])              {                  continue;              }              dp[1][i]++;          }          for(int i=2;i<=n;i++)          {              for(int j=0;j<=Top-1;j++)              {                  if(sta[j]&a[i])                  {                      continue;                  }                  for(int v=0;v<=Top-1;v++)                  {                      if(sta[v]&a[i-1])                      {                          continue;                      }                      if(sta[v]&sta[j])                      {                          continue;                      }                      dp[i][j] = (dp[i][j]%mod + dp[i-1][v]%mod)%mod;                  }              }          }          int res = 0;          for(int i=0;i<=Top-1;i++)          {              res=(res%mod+dp[n][i]%mod)%mod;          }          printf("%d\n",res);      }      return 0;  }  #include <iostream>#include <cstring>#include <cstdio>#define N 15#define M 1<<15#define mod 100000000using namespace std;int dp[N][M],sta[M],a[N],Top;int main(){    //freopen("data.in","r",stdin);    int n,m;    while(scanf("%d %d",&n,&m)!=EOF)    {        memset(a,0,sizeof(a));        for(int i=1;i<=n;i++)        {            for(int j=1;j<=m;j++)            {                int x;                scanf("%d",&x);                if(x==0)                {                    a[i]+=(1<<(m-j));                }            }        }        Top=0;        for(int i=0;i<(1<<(m));i++)        {            if(i&((i)<<1))            {                continue;            }            sta[Top++] = i;        }        memset(dp,0,sizeof(dp));        for(int i=0;i<=Top-1;i++)        {            if(sta[i]&a[1])            {                continue;            }            dp[1][i]++;        }        for(int i=2;i<=n;i++)        {            for(int j=0;j<=Top-1;j++)            {                if(sta[j]&a[i])                {                    continue;                }                for(int v=0;v<=Top-1;v++)                {                    if(sta[v]&a[i-1])                    {                        continue;                    }                    if(sta[v]&sta[j])                    {                        continue;                    }                    dp[i][j] = (dp[i][j]%mod + dp[i-1][v]%mod)%mod;                }            }        }        int res = 0;        for(int i=0;i<=Top-1;i++)        {            res=(res%mod+dp[n][i]%mod)%mod;        }        printf("%d\n",res);    }    return 0;}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.