6732.Grid Paths I

Time Limit: 1s Memory Limit: 512MB

Consider an $n \times n$ grid whose squares may have traps. It is not allowed to move to a square with a trap.

Your task is to calculate the number of paths from the upper-left square to the lower-right square. You can only move right or down.

Input Format(From the terminal/stdin)

The first input line has an integer $n$ : the size of the grid.

After this, there are $n$ lines that describe the grid. Each line has $n$ characters: . denotes an empty cell, and * denotes a trap.

  • $1 \le n \le 1000$

Output Format(To the terminal/stdout)

Print the number of paths modulo $10^9+7$ .

Sample Input

Copy
4
....
.*..
...*
*...
 \n
    \n
    \n
    \n
    \n

Sample Output

Copy
3
 \n
Source: CSES, Dynamic Programming, 1638

Submit

请先 登录

© 2025 FAQs