5948: Turtles

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:1 通过:1

题目描述

D. Turtles
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
You've got a table of size n×m. We'll consider the table rows numbered from top to bottom 1 through n, and the columns numbered from left to right 1 through m. Then we'll denote the cell in row x and column y as (x,y).
Initially cell (1,1) contains two similar turtles. Both turtles want to get to cell (n,m). Some cells of the table have obstacles but it is guaranteed that there aren't any obstacles in the upper left and lower right corner. A turtle (one or the other) can go from cell (x,y) to one of two cells (x+1,y) and (x,y+1), as long as the required cell doesn't contain an obstacle. The turtles have had an argument so they don't want to have any chance of meeting each other along the way. Help them find the number of ways in which they can go from cell (1,1) to cell (n,m).
More formally, find the number of pairs of non-intersecting ways from cell (1,1) to cell (n,m) modulo 1000000007 (109+7). Two ways are called non-intersecting if they have exactly two common points − the starting point and the final point.
Input
The first line contains two integers n,m (2≤n,m≤3000). Each of the following n lines contains m characters describing the table. The empty cells are marked by characters ".", the cells with obstacles are marked by "#".
It is guaranteed that the upper left and the lower right cells are empty.
Output
In a single line print a single integer − the number of pairs of non-intersecting paths from cell (1,1) to cell (n,m) modulo 1000000007 (109+7).
Examples
Input
4 5
.....
.###.
.###.
.....
Output
1
Input
2 3
...
...
Output
1

输入样例 复制


输出样例 复制


分类标签