|
||||||||||
Distinct Sub-matrixTime Limit: 10000/5000 MS (Java/Others) Memory Limit: 165768/165768 K (Java/Others)Total Submission(s): 1098 Accepted Submission(s): 361 Problem Description In this problem, let us consider an N*M matrix of capital letters. By selecting consecutive columns and rows, we can define the sub-matrix as the elements on chosen columns and rows. Two sub-matrices should be regarded the same if and only if they have the same dimensions and characters (which, of course, are capital letters) on corresponding position. It is your task to find the number of distinct sub-matrices of a given letter matrix. Input The input contains a lot of test cases. The first line of input contains exactly one integer, indicating the number of test cases. For each of the test case, the first line contains two integers N and M, denoting the number of rows and columns of the given matrix. (1 <= N, M <= 128) The next N lines contain only capital letters, indicating the given matrix. Output For each test case, output a single integer denoting the number of distinct sub-matrices. Sample Input
Sample Output
Source | ||||||||||
|