CSES1638 - Grid Paths
Xem dạng PDF
SUBMIT SOLUTION
ID:
cses_dp_1638
Điểm:
1,00 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Người đăng:
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Output Only, Pascal, PyPy, Python, Scratch, TEXT
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 Specification
- 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.
Output Specification
- Print the number of paths modulo ~10^9 + 7~.
Constrains
- ~1 \le n \le 1000~
Sample Cases
Input #1:
4
....
.*..
...*
*...
Output #1:
3

Bình luận