300786: CF150B. Quantity of Strings
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Quantity of Strings
题意翻译
现在有一个长度为$ N $的字符串,它的字典集为 $M$ .也就是说每一位有$M$ 种不同的字母可以选. 对于这个字符串所有连续的长度为 K 的子串都必须是回文串,请问有多少种不同的方案。$(1 \leq N,M,K \leq 2000)$ 由于答案可能很大,请将答案 $mod$ $(10^9+7)$题目描述
Just in case somebody missed it: this winter is totally cold in Nvodsk! It is so cold that one gets funny thoughts. For example, let's say there are strings with the length exactly $ n $ , based on the alphabet of size $ m $ . Any its substring with length equal to $ k $ is a palindrome. How many such strings exist? Your task is to find their quantity modulo $ 1000000007 $ ( $ 10^{9}+7 $ ). Be careful and don't miss a string or two! Let us remind you that a string is a palindrome if it can be read the same way in either direction, from the left to the right and from the right to the left.输入输出格式
输入格式
The first and only line contains three integers: $ n $ , $ m $ and $ k $ ( $ 1<=n,m,k<=2000 $ ).
输出格式
Print a single integer — the number of strings of the described type modulo $ 1000000007 $ ( $ 10^{9}+7 $ ).
输入输出样例
输入样例 #1
1 1 1
输出样例 #1
1
输入样例 #2
5 2 4
输出样例 #2
2