CF845F.Guards In The Storehouse
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 .
输入格式
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, i th line contains a string consisting of m characters — i th row of the matrix representing the storehouse. Each character is either . or x.
输出格式
Output the number of suitable plans modulo 109+7 .
输入输出样例
输入#1
1 3 .x.
输出#1
3
输入#2
2 2 xx xx
输出#2
1
输入#3
2 2 .. ..
输出#3
10
输入#4
3 1 x . x
输出#4
2
说明/提示
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.