CF293B.Distinct Paths

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You have a rectangular n×mn×m -cell board. Some cells are already painted some of kk colors. You need to paint each uncolored cell one of the kk colors so that any path from the upper left square to the lower right one doesn't contain any two cells of the same color. The path can go only along side-adjacent cells and can only go down or right.

Print the number of possible paintings modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入格式

The first line contains three integers n,m,kn,m,k (1<=n,m<=1000,1<=k<=10)(1<=n,m<=1000,1<=k<=10) . The next nn lines contain mm integers each — the board. The first of them contains mm uppermost cells of the board from the left to the right and the second one contains mm cells from the second uppermost row and so on. If a number in a line equals 0, then the corresponding cell isn't painted. Otherwise, this number represents the initial color of the board cell — an integer from 1 to kk .

Consider all colors numbered from 1 to kk in some manner.

输出格式

Print the number of possible paintings modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入输出样例

  • 输入#1

    2 2 4
    0 0
    0 0
    

    输出#1

    48
    
  • 输入#2

    2 2 4
    1 2
    2 1
    

    输出#2

    0
    
  • 输入#3

    5 6 10
    0 0 0 0 0 0
    0 0 0 0 0 0
    0 0 0 0 0 0
    0 0 0 0 0 0
    0 0 0 0 0 0
    

    输出#3

    3628800
    
  • 输入#4

    2 6 10
    1 2 3 4 5 6
    0 0 0 0 0 0
    

    输出#4

    4096
    
首页