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

     

    分析

    • 这道题还是常规状压DP

    • 首先这道题没有要放的个数,所以我们只徐娅需要解决上下左右就好了
    • 还是那样 j&k 但是这道题还有一个小技巧
    • 就是说我们可以开一个数组先记录一个地图
    • 如果j&map[行]==j的话就是没有冲突的::
    • for (int i=1;i<=m;i++)
      for (int j=1;j<=n;j++)
      F[i]=(F[i]<<1)+map[i][j];核心代码

    • 左右上下照常,提前开数组记录可行就好了

     

    代码

     1 #include<iostream>
     2 using namespace std;
     3 long long n,m,k,t[100001];
     4 long long f[15][100001],F[15];
     5 bool sta[100001];
     6 long long map[20][20];
     7 const int M=1e8;
     8 int main ()
     9 {
    10     ios::sync_with_stdio(false);
    11     cin>>m>>n;
    12     for (int i=1;i<=m;i++)
    13       for (int j=1;j<=n;j++)
    14          cin>>map[i][j];
    15     for (int i=1;i<=m;i++)
    16       for (int j=1;j<=n;j++)
    17        F[i]=(F[i]<<1)+map[i][j];
    18     int maxx=(1<<n)-1;
    19     for (int i=0;i<=maxx;i++)
    20         sta[i]=((i&(i<<1))==0)&&((i&(i>>1))==0);
    21     f[0][0]=1;
    22     for (int i=1;i<=m;i++)
    23       for (int j=0;j<=maxx;j++)
    24       {
    25           if (((j&F[i])==j)&&sta[j])
    26             for (int kk=0;kk<=maxx;kk++)
    27           {
    28                   if (kk&j) continue;
    29                   f[i][j]+=(f[i-1][kk]);
    30                   f[i][j]%=M;
    31           }
    32       }
    33     long long sum=0;
    34     for (int i=0;i<=maxx;i++)
    35     {
    36          sum+=f[m][i];
    37          sum%=M;
    38     }
    39     cout<<sum;
    40 }
    为何要逼自己长大,去闯不该闯的荒唐
  • 相关阅读:
    mysql-索引与优化
    sql优化
    PHP高并发
    MySQL 数据类型
    ERROR 2013 (HY000): Lost connection to MySQL server
    建模各阶段以及相关UML构造笔记
    Code Complete 笔记—— 第二章 用隐喻来更充分理解软件开发
    Code Complete 笔记—— 第一章
    Laravel使用笔记 —— migration
    本地xdebug调试搭建 Laravel+homestead+phpstorm
  • 原文地址:https://www.cnblogs.com/zjzjzj/p/10409089.html
Copyright © 2011-2022 走看看