zoukankan      html  css  js  c++  java
  • 玉米田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...
      一开始竟然忘了要判断同一行中的相邻关系...退役倒计时ing

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 #define LL long long
     5 #define RI register int
     6 #define KI 100000000
     7 using namespace std;
     8 const int INF = 0x7ffffff ;
     9 const int N = 12 + 1 ;
    10 const int S = (1<<12) ;
    11 
    12 inline int read() {
    13     int k = 0 , f = 1 ; char c = getchar() ;
    14     for( ; !isdigit(c) ; c = getchar())
    15       if(c == '-') f = -1 ;
    16     for( ; isdigit(c) ; c = getchar())
    17       k = k*10 + c-'0' ;
    18     return k*f ;
    19 }
    20 int n, m ;  LL f[N][S] ; bool hh[N][N] ;
    21 
    22 LL dfs(int x,int s) {
    23     if(f[x][s]) return f[x][s] ;
    24     for(int i=1;i<=m;i++) if(!hh[x][i] && (s^(1<<(i-1))) < s) return 0 ; // 方案不合法
    25     for(int i=1;i<m;i++) if(s&(1<<(i-1)) && s&(1<<i)) return 0 ;
    26     if(x == 1) return f[x][s] = 1 ;
    27     int ss = ((1<<m)-1)^s ;
    28     for(int i=0;i<=ss;i++) if(!(i&s)) f[x][s] += dfs(x-1,i), f[x][s] %= KI ;
    29     return f[x][s] ; 
    30 }
    31 
    32 int main() {
    33     n = read(), m = read() ;
    34     for(int i=1;i<=n;i++)
    35       for(int j=1;j<=m;j++) hh[i][j] = read() ;
    36     LL ans = 0 ;
    37     for(int s=0;s<(1<<m);s++) ans += dfs(n,s), ans %= KI ;
    38     printf("%lld",ans) ;
    39     return 0 ;
    40 }
    
    
    
     
     
  • 相关阅读:
    TSQL 备份和还原
    SQL检查死锁情况
    局域网中“隐身”妙招 类似360的局域网隐身
    注册edu邮箱的办法
    C#读、写、删除注册表
    SQL备份计划
    GridView命令不够用怎么办?
    从智能设备访问SQL2000的数据
    智能设备访问SQL2000(一)
    字符HTML编码类(转)
  • 原文地址:https://www.cnblogs.com/zub23333/p/8717768.html
Copyright © 2011-2022 走看看