zoukankan      html  css  js  c++  java
  • C

    Problem description

    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

    2 3
    AAB
    BAA

    Output

    4

    Input

    4 5
    ABABA
    BCGDG
    AAAAA
    YABSA

    Output

    216

    Note

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

    解题思路:找规律。输入n个字符串,每个字符串的长度都为m,可以将其看成是二维数组。只要将每一列中不同字符的个数相乘起来,最终即为所求答案。注意:要用long long避免数据溢出,水过。

    AC代码:

     1 #include <bits/stdc++.h>
     2 using namespace std;
     3 typedef long long LL;
     4 const int mod = 1e9+7;
     5 int main()
     6 {
     7     int n,m;LL sum=1;
     8     set<char> se[105];string obj[105];
     9     cin>>n>>m;getchar();
    10     for(int i=0;i<n;++i)cin>>obj[i];
    11     for(int i=0;i<n;++i)
    12         for(int j=0;j<m;++j)
    13             se[j].insert(obj[i][j]);
    14     for(int i=0;i<m;++i)
    15         sum=(sum*se[i].size())%mod;
    16     cout<<sum<<endl;
    17     return 0;
    18 }
  • 相关阅读:
    2018 南京网络预赛Sum
    一个莫比乌斯等式的证明
    LOJ 2452 对称 Antisymmetry——用hash求回文串数
    LOJ 103子串查找——用hash代替kmp算法
    LOJ2823 三个朋友 ——查询字串的哈希值
    hash入门
    2019牛客暑期多校训练营(第十场)Coffee Chicken——递归
    2019牛客暑期多校训练营(第十场)Han Xin and His Troops——扩展中国剩余定理
    mutex 的 可重入
    Linux 编译安装Boost
  • 原文地址:https://www.cnblogs.com/acgoto/p/9136602.html
Copyright © 2011-2022 走看看