304422: CF845F. Guards In The Storehouse

Memory Limit:512 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Guards In The Storehouse

题意翻译

给定一个 $n\times m$ 的网格,有些位置是障碍(`x`),有些位置是空地(`.`)。 可以在每一个空地处放一个摄像头,这个摄像头会向右,向下监视第一个障碍前的所有方格。现在你需要在空地上安排摄像头,使得最多 $1$ 个空地没有被摄像头监视。输出方案数对 $10^9+7$ 取模。 $n,m,nm \le 250$

题目描述

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 $ (x_{0},y_{0}) $ , then he protects cell $ (x_{1},y_{1}) $ if all these conditions are met: - $ (x_{1},y_{1}) $ is an empty cell; - either $ x_{0}=x_{1} $ and $ y_{0}<=y_{1} $ , or $ x_{0}<=x_{1} $ and $ y_{0}=y_{1} $ ; - there are no walls between cells $ (x_{0},y_{0}) $ and $ (x_{1},y_{1}) $ . 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 $ 10^{9}+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 $ 10^{9}+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.

Input

题意翻译

给定一个 $n\times m$ 的网格,有些位置是障碍(`x`),有些位置是空地(`.`)。 可以在每一个空地处放一个摄像头,这个摄像头会向右,向下监视第一个障碍前的所有方格。现在你需要在空地上安排摄像头,使得最多 $1$ 个空地没有被摄像头监视。输出方案数对 $10^9+7$ 取模。 $n,m,nm \le 250$

加入题单

算法标签: