CF348D.Turtles
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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.
输入格式
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.
输出格式
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) .
输入输出样例
输入#1
4 5 ..... .###. .###. .....
输出#1
1
输入#2
2 3 ... ...
输出#2
1