Algorithm


C. Pocket Book
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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

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

You wonder how many different names Vasya can write instead of name number 1, if Vasya is allowed to perform any number of the described actions. As Vasya performs each action, he chooses numbers ijk 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 1000000007 (109 + 7).

Input

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

Output

Print the single number — the number of different names that could end up in position number 1 in the pocket book after the applying the procedures described above. Print the number modulo 1000000007 (109 + 7).

Examples
input
Copy
2 3
AAB
BAA
output
Copy
4
input
Copy
4 5
ABABA
BCGDG
AAAAA
YABSA
output
Copy
216
Note

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



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <bits/stdc++.h>

using namespace std;

int n, m, freq[101][26], all[101];
char s[101];

int main() {
  scanf("%d %d", &n, &m);
  for(int i = 0; i < n; ++i) {
    scanf("%s", s);
    for(int j = 0; j < m; ++j)
      ++freq[j][s[j] - 'A'];
  }
  
  for(int i = 0; i < m; ++i)
    for(int j = 0; j < 26; ++j)
      all[i] += (freq[i][j] != 0);
  
  long long res = 1;
  for(int i = 0; i < m; ++i)
    res = (res * (all[i] == 0 ? 1 : all[i])) % int(1e9 + 7);
  printf("%lld\n", res);
  
  return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
2 3
AAB
BAA

Output

x
+
cmd
4
Advertisements

Demonstration


Codeforcess Solution Pocket Book, C. Pocket Book ,C,C++, Java, Js and Python ,Pocket Book,Codeforcess Solution

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+