CF111D.Petya and Coloring
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Little Petya loves counting. He wants to count the number of ways to paint a rectangular checkered board of size n×m ( n rows, m columns) in k colors. Besides, the coloring should have the following property: for any vertical line that passes along the grid lines and divides the board in two non-empty parts the number of distinct colors in both these parts should be the same. Help Petya to count these colorings.
输入格式
The first line contains space-separated integers n , m and k ( 1<=n,m<=1000,1<=k<=106 ) — the board's vertical and horizontal sizes and the number of colors respectively.
输出格式
Print the answer to the problem. As the answer can be quite a large number, you should print it modulo 109+7 ( 1000000007 ).
输入输出样例
输入#1
2 2 1
输出#1
1
输入#2
2 2 2
输出#2
8
输入#3
3 2 2
输出#3
40