zoukankan      html  css  js  c++  java
  • 洛谷P1879 [USACO06NOV]玉米田Corn Fields

    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

    原图中,不能种草的点记为1,能种草的记为0,按此预处理每一行
    之后,种草记为1,不种草记为0,预处理出所有当前行的合法答案,存到数组s中
    预处理第一行的情况,第二行从上一行转移即可

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <cstdlib>
     4 #include <cstring>
     5 #include <algorithm>
     6 #include <vector>
     7 #include <queue>
     8 #include <stack>
     9 inline void read(long long &x){x = 0;char ch = getchar();char c = ch;while(ch < '0' || ch > '9')c = ch, ch = getchar();while(ch <= '9' && ch >= '0')x = x * 10 + ch - '0', ch = getchar();if(c == '-')x = -x;}
    10 
    11 const int INF = 0x3f3f3f3f;
    12 const int MAXN = 20 + 1;
    13 const int MAXM = 20 + 1;
    14 const long long MOD = 100000000;
    15 
    16 long long n,m,g[MAXN],s[1 << 13],k;
    17 long long dp[MAXN][1 << 13];
    18 
    19 //g[i]表示  把第i行0换成1,1换成0的排列 
    20 
    21 long long ans;
    22 
    23 int main()
    24 {
    25     read(n);read(m);
    26     for(register long long i = 1;i <= n;++ i)
    27         for(register long long j = 1;j <= m;++ j)
    28         {
    29             long long x;
    30             read(x);
    31             if(x == 0)
    32             {
    33                 g[i] += (1 << (m - j));
    34             }
    35         }
    36     //同行1互不相邻的初始状态,有k个 
    37     for(long long i = 0;i < (1 << m);++ i)
    38         if(!(i & (i << 1)))
    39             s[++k] = i;
    40     //初始状态
    41     for(long long i = 1;i <= k;++ i)
    42     {
    43         if(!(s[i] & g[1]))
    44         {
    45             dp[1][i] = 1;
    46         }
    47     }
    48     //转移
    49     
    50     //枚举行数 
    51     for(long long i = 2;i <= n;++ i)
    52     {
    53         //枚举这一行的状态 
    54         for(long long j = 1;j <= k;++ j)
    55         {
    56             //不可行,跳过 
    57             if(s[j] & g[i])continue;
    58             
    59             //可行,枚举上一行状态
    60              for(long long pre = 1;pre <= k;++ pre)
    61              {
    62                  //不可行,跳过 
    63                  if(s[pre] & g[i - 1])continue; 
    64                  
    65                  //可行,判断两列是否有相邻
    66                 if(s[j] & s[pre])continue;
    67                 
    68                 dp[i][j] += dp[i - 1][pre];
    69                 dp[i][j] %= MOD;
    70              }
    71              
    72              if(i == n)
    73                  ans += dp[i][j],ans %= MOD;
    74         }
    75     }
    76     if(n == 1)
    77         for(long long j = 1;j <= k;j ++)
    78             ans += dp[n][j];
    79     printf("%lld", ans%MOD);
    80     return 0;
    81 }
    View Code
  • 相关阅读:
    sourceInsight4 破解笔记(完美破解)
    notepad++ 查找引用(Find Reference)(适用于c c++及各类脚本比如lua、python等)
    notepad++ 插件推荐——快速定位文件
    WebRTC开源项目一览之二
    编译最新版webrtc源码和编译好的整个项目10多个G【分享】
    Neo4j中实现自定义中文全文索引
    NEO4J -模糊查询
    neo4j数据库迁移---------Neo4j数据库导入导出的方法
    使用neo4j图数据库的import工具导入数据 -方法和注意事项
    neo4j采坑记
  • 原文地址:https://www.cnblogs.com/huibixiaoxing/p/7102668.html
Copyright © 2011-2022 走看看