CF152C.Pocket Book

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One day little Vasya found mom's pocket book. The book had nn names of her friends and unusually enough, each name was exactly mm letters long. Let's number the names from 11 to nn in the order in which they are written.

As mom wasn't home, Vasya decided to play with names: he chose three integers ii , jj , kk ( 1<=i<j<=n , 1<=k<=m1<=k<=m ), then he took names number ii and jj and swapped their prefixes of length kk . For example, if we take names "CBDAD" and "AABRD" and swap their prefixes with the length of 33 , the result will be names "AABAD" and "CBDRD".

You wonder how many different names Vasya can write instead of name number 11 , if Vasya is allowed to perform any number of the described actions. As Vasya performs each action, he chooses numbers ii , jj , kk independently from the previous moves and his choice is based entirely on his will. The sought number can be very large, so you should only find it modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入格式

The first input line contains two integers nn and mm ( 1<=n,m<=1001<=n,m<=100 ) — the number of names and the length of each name, correspondingly. Then nn lines contain names, each name consists of exactly mm uppercase Latin letters.

输出格式

Print the single number — the number of different names that could end up in position number 11 in the pocket book after the applying the procedures described above. Print the number modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入输出样例

  • 输入#1

    2 3
    AAB
    BAA
    

    输出#1

    4
    
  • 输入#2

    4 5
    ABABA
    BCGDG
    AAAAA
    YABSA
    

    输出#2

    216
    

说明/提示

In the first sample Vasya can get the following names in the position number 11 : "AAB", "AAA", "BAA" and "BAB".

首页