time limit per test

1.5 seconds

memory limit per test

512 megabytes

input

standard input

output

standard output

Polycarp owns a shop in the capital of Berland. Recently the criminal activity in the capital increased, so Polycarp is thinking about establishing some better security in the storehouse of his shop.

The storehouse can be represented as a matrix with n rows and m columns. Each element of the matrix is either . (an empty space) or x (a wall).

Polycarp wants to hire some guards (possibly zero) to watch for the storehouse. Each guard will be in some cell of matrix and will protect every cell to the right of his own cell and every cell to the bottom of his own cell, until the nearest wall. More formally, if the guard is standing in the cell (x0, y0), then he protects cell (x1, y1) if all these conditions are met:

  • (x1, y1) is an empty cell;
  • either x0 = x1 and y0 ≤ y1, or x0 ≤ x1 and y0 = y1;
  • there are no walls between cells (x0, y0) and (x1, y1). There can be a guard between these cells, guards can look through each other.

Guards can be placed only in empty cells (and can protect only empty cells). The plan of placing the guards is some set of cells where guards will be placed (of course, two plans are different if there exists at least one cell that is included in the first plan, but not included in the second plan, or vice versa). Polycarp calls a plan suitable if there is not more than one empty cell that is not protected.

Polycarp wants to know the number of suitable plans. Since it can be very large, you have to output it modulo 109 + 7.

Input

The first line contains two numbers n and m — the length and the width of the storehouse (1 ≤ n, m ≤ 250, 1 ≤ nm ≤ 250).

Then n lines follow, ith line contains a string consisting of m characters — ith row of the matrix representing the storehouse. Each character is either . or x.

Output

Output the number of suitable plans modulo 109 + 7.

Examples
Input
1 3
.x.
Output
3
Input
2 2
xx
xx
Output
1
Input
2 2
..
..
Output
10
Input
3 1
x
.
x
Output
2
Note

In the first example you have to put at least one guard, so there are three possible arrangements: one guard in the cell (1, 1), one guard in the cell (1, 3), and two guards in both these cells.

题意:

  在地图上放士兵守卫,  "" 代表那个位置可以放士兵 , " " 代表那个位置是墙

  士兵的守卫范围为:

    ① 士兵右侧连续的的 " . " 直到墙或者地图边缘
    ② 士兵下方连续的的 " . " 直到墙或者地图边缘
    ③ 士兵所处的位置

  求 放置士兵使得士兵守卫的不到的位置 <=1 的方案数 (不包括墙)

思路:

  由于  1 ≤ nm ≤ 250   所以始终  min ( n,m ) ≤ 15    这是个有用的信息

  容易发现 , 放完左上方位置的士兵后左上的情况不会受下面或者右边的影响

  因此可以考虑dp

  dp [ i ]  表示 按如图编号顺序 从上到下 从左往右 放置第 i 个士兵的局面

  

  状态有两种

    1)当前局面已经有一个位置守卫不到

    2)当前所有位置都能被守护

  但是我们发现一个问题 我们 怎样知道当前位置 放置/不放置 士兵会造成什么影响呢

  所以我们需要知道 两个东西

    1)上方是否有士兵能守卫到当前位置

    2)左侧是否有士兵能守卫到当前位置

  这时候对第一点  考虑到状压dp  ( 因为min(n,m)<=15  ) 2进制的当前位为 1 则上方有士能守卫到这个位置   为 0 则没有

  对第二点考虑增加一维 表示 dp 的状态      1 代表左侧有士能守卫到这个位置    0 则没有

  所以 dp方程变成了 4 维  dp [ i ] [ j ] [ k ] [ h ]     表示

  放置第 i 个士兵   ,    j  代表2进制表示上方的状态   ,    k 代表 是否左侧有士兵能守卫当前位置 0为没有 1为有 ,  h表示已经被考虑过的位置有多少位置无法被守卫

  转移方式如下图

  

  紫色线的左侧和上方为被考虑过的位置 红色为当前位置 蓝色为放置完士兵

  那么 图中状态就是

  dp  [ i ] [ j ] [ k ] [ h ]

  i  =  9

  j  =  1110 (二进制) ///分别表示  第一列 第二列 第三列 第四列

  k = 0  ( 左侧无士兵 )

  h = 0 (没有被守卫到的位置为 0 个)

  如果当前位置放置士兵  转移到

  

  dp [ i ] [ j ]  [ k ] [ h ]

  i  =  10

  j  =  1110 (二进制) ///分别表示  第一列 第二列 第三列 第四列

  k = 1  ( 左侧有士兵 )

  h = 0 (没有被守卫到的位置为 0 个)

  否则转移到

  dp [ i ] [ j ]  [ k ] [ h ]

  i  =  10

  j  =  1110 (二进制) ///分别表示  第一列 第二列 第三列 第四列

  k = 0  ( 左侧无士兵 )

  h = 0 (没有被守卫到的位置为 0 个)

  注意到两点

   ① 放行末的士兵时 由于要转移到下一行的第一个  那么 他转移时所有状态中的(  dp[ i ] [ j ] [ k ] [h ]  )  k 只能是 0 
   ② 由于 min (n , m ) <=15  所以当列数比较多时要把 地图行列翻转  使得列数<=15

  具体的转移情况稍微看一下就出来了 代码中也有

  为了节省空间 转移时可以用滚动数组把dp的第一维降下来

  代码:

#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include <assert.h>
#include <math.h>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <vector>
#include <string>
#include <iostream>
#include <algorithm>
#include <functional> #define mp make_pair
#define pb push_back
#define mes(a,b) memset(a,b,sizeof(a))
#define mes0(a) memset(a,0,sizeof(a))
#define lson l,mid,pos<<1
#define rson mid+1,r,pos<<1|1
#define rep(i,a,b) for(int i=a;i<=b;i++)
#define fi first
#define se second
#define sss(a) a::iterator
#define all(a) a.begin(),a.end() using namespace std; typedef double DB;
typedef long long LL;
typedef pair<int,int> pii;
typedef pair<long long ,int> pli;
typedef pair<int,long long > pil;
typedef pair<string,int> psi;
typedef pair<long long ,long long > pll; const int inf = 0x3f3f3f3f;
const long long INF = 0x3f3f3f3f3f3f3f3f;
const double pi = acos(-1.0);
const int maxn = +;
const int mod = 1e9+;
char MAP[][];
int n,m;
int dp[][(<<)][][]; /// 滚动 , 状压 , 左侧状态, 已填完的是否有空
int main()
{
dp[][][][]=;
int op=; ///滚动
scanf("%d%d",&n,&m);
if (m<=n){
for (int i=;i<n;i++){
scanf("%s",MAP[i]);
}
}else {
for (int i=;i<n;i++){
getchar();
for (int j=;j<m;j++){
MAP[j][i]=getchar();
}
}
swap(n,m);
}
for (int i=;i<n;i++){
int j;
for (j=;j<m;j++){
int flag=(j!=m-);
int now=m-j-;
int k;
memset(dp[op^],,sizeof(dp[op^]));
if (MAP[i][j]=='.'){
for (k=;k<(<<m);k++){
///dp[op][k][w][h];
/// m 1/0 是否填进去
/// 滚动数组, 状压 , 左侧状态, 已填完的是否有空
for (int m=;m<;m++){
for (int w=;w<;w++){
int st=(k>>now)&;
int S=k|((m|st)<<now);
st=(m|w|st)^;
for (int h=;h<;h++){
dp[op^][S][(w|m)&flag][h+st]+=dp[op][k][w][h];
dp[op^][S][(w|m)&flag][h+st]%=mod;
}
}
}
}
op^=;
} else {
for (k=;k<(<<m);k++){
///dp[op][k][w][h];
/// m 1/0 是否填进去
/// 滚动数组 , 状压 , 左侧状态, 已填完的是否有空
for (int w=;w<;w++){
int st=(k>>now)&;
int S=(k^(st<<now));
for (int h=;h<;h++){
dp[op^][S][][h]+=dp[op][k][w][h];
dp[op^][S][][h]%=mod;
}
}
}
op^=;
}
}
}
int ans=;
for (int i=;i<(<<m);i++){
for (int j=;j<;j++){
ans+=dp[op][i][][j];
ans%=mod;
}
}
cout<<ans<<endl;
return ;
}

Educational Codeforces Round 27 F. Guards In The Storehouse的更多相关文章

  1. Educational Codeforces Round 40 F. Runner's Problem

    Educational Codeforces Round 40 F. Runner's Problem 题意: 给一个$ 3 * m \(的矩阵,问从\)(2,1)$ 出发 走到 \((2,m)\) ...

  2. Educational Codeforces Round 27 补题

    题目链接:http://codeforces.com/contest/845 A. Chess Tourney 水题,排序之后判断第n个元素和n+1个元素是不是想等就可以了. #include < ...

  3. Educational Codeforces Round 61 F 思维 + 区间dp

    https://codeforces.com/contest/1132/problem/F 思维 + 区间dp 题意 给一个长度为n的字符串(<=500),每次选择消去字符,连续相同的字符可以同 ...

  4. Educational Codeforces Round 51 F. The Shortest Statement(lca+最短路)

    https://codeforces.com/contest/1051/problem/F 题意 给一个带权联通无向图,n个点,m条边,q个询问,询问两点之间的最短路 其中 m-n<=20,1& ...

  5. Educational Codeforces Round 12 F. Four Divisors 求小于x的素数个数(待解决)

    F. Four Divisors 题目连接: http://www.codeforces.com/contest/665/problem/F Description If an integer a i ...

  6. Educational Codeforces Round 26 F. Prefix Sums 二分,组合数

    题目链接:http://codeforces.com/contest/837/problem/F 题意:如题QAQ 解法:参考题解博客:http://www.cnblogs.com/FxxL/p/72 ...

  7. Educational Codeforces Round 9 F. Magic Matrix 最小生成树

    F. Magic Matrix 题目连接: http://www.codeforces.com/contest/632/problem/F Description You're given a mat ...

  8. Educational Codeforces Round 6 F. Xors on Segments 暴力

    F. Xors on Segments 题目连接: http://www.codeforces.com/contest/620/problem/F Description You are given ...

  9. Educational Codeforces Round 7 F. The Sum of the k-th Powers 拉格朗日插值法

    F. The Sum of the k-th Powers 题目连接: http://www.codeforces.com/contest/622/problem/F Description Ther ...

随机推荐

  1. superviosrd进程管理

    supervisor进程管理器---------------------------1. 安装依赖yum install python-setuptools-devel 2. 安装supervisor ...

  2. [POJ 2397] Spiderman

    Link: POJ 2397 传送门 Solution: 设$dp[i][j]$表示第$i$步走到$j$高度时经过的最高高度 分向上走和向下走两种方式转移即可 注意记录路径,最后输出时要逆序输出 (逆 ...

  3. 三. Java类与对象8.再谈Java包

    在Java中,为了组织代码的方便,可以将功能相似的类放到一个文件夹内,这个文件夹,就叫做包. 包不但可以包含类,还可以包含接口和其他的包. 目录以"\"来表示层级关系,例如 E:\ ...

  4. Vue的常用指令v-if, v-for, v-show,v-else, v-bind, v-on

    Vue.js的指令是以v-开头的,它们作用于HTML元素,指令提供了一些特殊的特性,将指令绑定在元素上时,指令会为绑定的目标元素添加一些特殊的行为,我们可以将指令看作特殊的HTML特性(attribu ...

  5. ios开发中APP底部上滑不能调出如WiFi、蓝牙、播放等的设置页面的解决的方法

    在开发的APP中我们通常通过手动底部上滑来调出WiFi.蓝牙.飞行模式等的设置页面.有时我们开发的APP无法调出. 解决的方法: 进入iPhone "设置" --> &quo ...

  6. Hive日期格式转换用法

    如果想把 20180123 转换成 2018-01-23,可以使用: select from_unixtime(unix_timestamp('${p_date}','yyyymmdd'),'yyyy ...

  7. j2ee、mvn、eclipse、Tomcat等中文乱码问题解决方法

    一.更改jdk默认编码为UTF-8,保证启动的JVM不会出现中文乱码问题 1.在编译的时候,如果我们没有用 -encoding 参数指定我们的JAVA源程序的编码格式,则javac.exe首先获得我们 ...

  8. idea 搭建spring boot

    打开IntelliJ IDEA,在菜单栏选择File菜单-->New-->Project...-->Spring Initializr,Project SDK即选择JDK的版本,Ch ...

  9. 【共享单车】—— React后台管理系统开发手记:权限设置和菜单调整(未完)

    前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. ...

  10. 2017.3.31 spring mvc教程(二)核心流程及配置详解

    学习的博客:http://elf8848.iteye.com/blog/875830/ 我项目中所用的版本:4.2.0.博客的时间比较早,11年的,学习的是Spring3 MVC.不知道版本上有没有变 ...