Educational DP Contest AtCoder H - Grid 1

View as PDF

Submit solution

Points: 7
Time limit: 1.0s
Memory limit: 1G

Problem type

There is a grid with H horizontal rows and W vertical columns. Let (i,j) denote the square at the i-th row from the top and the j-th column from the left.

For each i and j (1iH,1jW). Square (i,j) is described by a character ai,j. If ai,jis ., square (i,j) is an empty square; if ai,j is #, square (i,j) is a wall square. It is guaranteed that squares (1,1) and (H,W) are empty squares.

Taro will start from square (1,1) and reach (H,W) by repeatedly moving right or down to an adjacent empty square.

Find the number of Taro's paths from square (1,1) to (H,W). As the answer can be extremely large, find the count modulo 109+7.

Constraints

  • H and W are integers
  • 2H,W1000
  • ai,j is . or #
  • Squares (1,1) and (H,W) are empty squares

Input Specification

The first line will contain 2 space separated integers, H and W.

The next H lines will each contain W characters, either a . or #.

Output Specification

Print the number of Taro's paths from square (1,1) to (H,W), modulo 109+7.

Sample Input 1

Copy
3 4
...#
.#..
....

Sample Output 1

Copy
3

Explanation For Sample 1

There are three paths as follows:

Sample Input 2

Copy
5 2
..
#.
..
.#
..

Sample Output 2

Copy
0

Explanation For Sample 2

There may be no paths.

Sample Input 3

Copy
5 5
..#..
.....
#...#
.....
..#..

Sample Output 3

Copy
24

Sample Input 4

Copy
20 20
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................
....................

Sample Output 4

Copy
345263555

Explanation For Sample 4

Be sure to print the count modulo 109+7.


Comments

There are no comments at the moment.