zoukankan      html  css  js  c++  java
  • 洛谷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的一道比较简单(?还不是调了一晚上?)的题
        状态转移为f[i][j] = Sum(f[i-1][k]) i表示当前行 j表示当前行的状态 k表示上一行的状态
        按照题目做下去即可 不过一定要注意位运算要多加括号!
        (一晚上的调试都是因为位运算的优先级问题)。。。
    */
    #include <bits/stdc++.h>
    
    using namespace std;
    
    const int MOD = 1e9;
    const int MAXN = 4096;
    
    int f[19][MAXN],mapp[19],a[19][19],m,n;
    long long ans = 0;
    bool can[MAXN];
    
    inline int read() {
         int x = 0,m = 1;
         char ch;
         while(ch < '0' || ch > '9')  {if(ch == '-') m = -1;ch = getchar();}
         while(ch >= '0' && ch <= '9'){x = x * 10 + ch-'0';ch = getchar();}
         return m * x;
    }
    
    int main()
    {
        m = read(),n = read();
        for(int i = 1;i <= m;i++){
            for(int j = 1;j <= n;j++){
                a[i][j] = read();
                mapp[i] = (mapp[i] << 1) + a[i][j];//mapp数组向左移一位给a[i][j]的值留空间(反正不是0就是1)
            }
        }
        int maxstate = (1 << n) - 1;//最大状态数 记得-1
        for(int i = 0;i <= maxstate;i++){
            can[i] = (!((i << 1) & i)) && (!((i >> 1) & i));//这里真的坑死我了23333 判断合法状态
        }
        f[0][0] = 1;//一定要置初值 不然求出来全是0
        for (int i = 1; i <= m; i++)
            for (int j = 0; j <= maxstate; j++)
                if (can[j] && ((j & mapp[i]) == j))//j & mapp[i]) == j保证没有草种在贫瘠的地方
                    for (int k = 0; k <= maxstate; k++)//枚举上一行状态
                        if ((k & j) == 0)//不能相邻
                            f[i][j] = (f[i][j] + f[i-1][k]) % MOD;//动态规划
        for(int i = 0;i <= maxstate;i++){
            ans += f[m][i];ans %= MOD;//记得取模
        }
        printf("%lld
    ",ans);
        return 0;
    }
  • 相关阅读:
    题解【DP100题1~10】
    新博客已建好!
    题解【语文1(chin1)- 理理思维】
    题解【[BJOI2012]算不出的等式】
    题解【[HAOI2006]受欢迎的牛】
    题解【[FJOI2018]所罗门王的宝藏】
    Redis常用命令
    mysql table 最新更新时间
    中国翻译史阶记
    HTTP Session原理
  • 原文地址:https://www.cnblogs.com/bryce02/p/9886204.html
Copyright © 2011-2022 走看看