华师一附中OI组

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 956|回复: 1
打印 上一主题 下一主题

P1879 玉米田Corn Fields

[复制链接]

738

主题

1485

帖子

5420

积分

管理员

Rank: 9Rank: 9Rank: 9

积分
5420
跳转到指定楼层
楼主
发表于 2018-8-24 11:16:55 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
https://www.luogu.org/problemnew/show/P1879

题目描述
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
回复

使用道具 举报

2

主题

105

帖子

306

积分

中级会员

Rank: 3Rank: 3

积分
306
沙发
发表于 2018-8-24 15:31:55 | 只看该作者
  1. #include <algorithm>
  2. #include <iostream>
  3. #include <cmath>
  4. #include <cstring>
  5. #include <map>
  6. #include <string>
  7. #include <vector>
  8. #include <queue>
  9. #include <stack>
  10. #include <cstdio>
  11. #include <cstdlib>
  12. using namespace std;
  13. int n,m,t,ans=0,dp[20][9000],st[9000],mmap[20],k=0;
  14. bool check(int x,int zh)
  15. {
  16.     return (mmap[x]&st[zh]);
  17. }
  18. int main()
  19. {
  20.     scanf("%d%d",&n,&m);
  21.     for(int i=1;i<=n;i++)
  22.         for(int j=1;j<=m;j++)
  23.         {
  24.             scanf("%d",&t);
  25.             if(t==0)  
  26.                 mmap[i]+=(1<<(j-1));
  27.         }  
  28.     for(int i=0;i<(1<<m);i++)
  29.     {  
  30.         if(!(i&(i<<1)))  
  31.             st[++k]=i;
  32.     }
  33.     for(int i=1;i<=k;i++)  
  34.     {  
  35.             if(!check(1,i))  
  36.             dp[1][i]=1;  
  37.     }
  38.     for(int i=2;i<=n;i++)
  39.         for(int j=1;j<=k;j++)
  40.             if(!check(i,j))
  41.                 for(int f=1;f<=k;f++)
  42.                     if(!check(i-1,f)&&!(st[j]&st[f]))
  43.                         dp[i][j]+=dp[i-1][f];
  44.     for(int i=1;i<=k;i++)
  45.     {
  46.         ans+=dp[n][i];
  47.         ans%=100000000;
  48.     }
  49.     printf("%d",ans);
  50.     return 0;
  51. }
复制代码
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|服务支持:DZ动力|华师一附中OI组  

GMT+8, 2024-11-2 06:33 , Processed in 0.096437 second(s), 25 queries .

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表