POJ P3254 Corn fields 【状压dp】

来源:互联网 发布:javascript 设计模式 编辑:程序博客网 时间:2024/06/05 07:05
Corn Fields
Time Limit: 2000MSMemory Limit: 65536KTotal Submissions: 16909Accepted: 8939

Description

Farmer John has purchased a lush new rectangular pasture composed ofM byN (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 andN
Lines 2..
M+1: Linei+1 describes rowi of the pasture withN 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 31 1 10 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

[Submit]   [Go Back]   [Status]   [Discuss]





设f[i][s]表示第i行s状态下的方案数,则对于所有i - 1行与s不冲突的方案都可以转移

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>#define LL long long int#define REP(i,n) for (int i = 1; i <= (n); i++)#define fo(i,x,y) for (int i = (x); i <= (y); i++)#define Redge(u) for (int k = head[u]; k != -1; k = edge[k].next)using namespace std;const int maxn = 20,maxm = 1 << 12,INF = 1000000000,P =  100000000;inline int read(){int out = 0,flag = 1;char c = getchar();while (c < 48 || c > 57) {if (c == '-') flag = -1; c = getchar();}while (c >= 48 && c <= 57) {out = out * 10 + c - 48; c = getchar();}return out * flag;}int f[maxn][maxm],N,M,le[maxm];bool ill[maxm];int main(){N = read();M = read();int maxv = (1 << M) - 1;for (int i = 1; i <= N; i++){for (int j = 1; j <= M; j++)le[i] = (le[i] << 1) + read();}for (int s = 0; s <= maxv; s++){bool sig = false; int t = s;while (t){if ((t & 1)&& sig) {ill[s] = true; break;}else if (t & 1) sig = true;else sig = false;t >>= 1;}}for (int s = 0; s <= maxv; s++){if (!ill[s] && (s | le[1]) == le[1])f[1][s] = 1;}for (int i = 2; i <= N; i++)for (int e = 0; e <= maxv; e++){if (ill[e] || (e | le[i]) != le[i]) continue;for(int s = 0; s <= maxv; s++){if (e & s) continue;f[i][e] = (f[i][e] + f[i - 1][s]) % P;}}int ans = 0;for (int i = 0; i <= maxv; i++) ans = (ans + f[N][i]) % P;cout<<ans<<endl;return 0;}

原创粉丝点击