洛谷 P1879 [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的余数。

输入输出样例

输入 #1
2 3
1 1 1
0 1 0
输出 #1
9

思路:看到数据范围,就是状态压缩,求总数,状压dp,dp[i][j]表示前i行,第i行的状态是j的种数,dfs预处理每一行可能的状态
洛谷 P1879 [USACO06NOV]玉米田Corn Fields
const int maxm = (1<<12) + 5;
const int MOD = 1e8;

int buf[13][13], s[13][maxm], num[13], dp[13][maxm];
int n, m, cnt;

void dfs(int i, int j, int state) {
    if(j >= m) return;
    s[i][cnt++] = state;
    for(int k = j+1; k < m; ++k) {
        if(buf[i][k] && !((1<<(k-1))&state)) dfs(i, k, state|(1<<k));
    }
}

int main() {
    ios::sync_with_stdio(false), cin.tie(0);
    cin >> n >> m; 
    for(int i = 0; i < n; ++i)
        for(int j = 0; j < m; ++j)
            cin >> buf[i][j];
    // 预处理每一行可能的状态
    for(int i = 0; i < n; ++i) {
        cnt = 0;
        for(int j = 0; j < m; ++j)
            if(buf[i][j]) dfs(i, j, 1<<j);
        // 全0也是可能状态
        num[i] = cnt+1;
    }
    //初始化dp数组,第1行每个状态都是1
    for(int i = 0; i < num[0]; ++i)
        dp[0][i] = 1;
    for(int i = 1; i < n; ++i) {
        for(int j = 0; j < num[i]; ++j) {
            for(int k = 0; k < num[i-1]; ++k) {
                // 上下两行不相交
                if((s[i][j]&s[i-1][k])==0)
                    dp[i][j] = (dp[i][j]+dp[i-1][k])%MOD;
            }
        }
    }
    int ans = 0;
    for(int i = 0; i < num[n-1]; ++i)
        ans = (ans + dp[n-1][i]) % MOD;
    cout << ans << "\n";
    return 0;
}
View Code

 




上一篇:Markdown->程序猿必备技能


下一篇:问题 C: 神奇的口袋 (背包问题)