F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Pattern Recognition

Time Limit: 20000/12000 MS (Java/Others)    Memory Limit: 786432/786432 K (Java/Others)
Total Submission(s): 84    Accepted Submission(s): 9


Problem Description
Given an image consisting only lowercase letters, for each query you should count the number of patterns in the image.

Formally, an image is a matrix with $n$ rows and $m$ columns, and each cell of the matrix contains a character. Considering a string consisting of lowercase letters, we can place it horizontally or vertically, so it has following shapes:

We can bend it $90$ degrees, and we get some new shapes:

In a word, a pattern is a string with these $6$ possible shapes:

For example, pattern abcd can have following shapes:

Kanari loves CV(Computer Vision), he writes a CNN(Convolutional Neural Network) to count the number of patterns in an image. Kanari is so cute, and the accuracy tends to $100\%$ after a long time parameter adjustment. Can you solve it too?
 

Input
This problem contains multiple test cases.

The first line of the input contains an integer $T (1 \leq T \leq 5)$ indicating the number of test cases.

For each test case, the first line contains three integers $n, m, q (n \geq 1, m \geq 1, 1 \leq n \times m \leq 10^5)$, representing the width of the image, the height of the image and the number of queries.

Each of the next $n$ lines contains $m$ characters representing the image.

Each of the next $q$ lines contains a string representing a query.

It is guaranteed that the sum of length of all queries in a test case is no more than $10^5$.
 

Output
For each query, output the number of corresponding patterns occurred in the image. Note that two occurences are different if and only if the SET of positions for the pattern in the image are different.
 

Sample Input
2 10 10 1 xxxxxxxxxx xbcdxxxxxx xaxxxdcbax xxxdxxxxxx xxxcbaxxxx xxxxxxabxx xaxaxxdcxx xbxbxxxxdc xcxcxxxxxb xdxdxxxxxa abcd 5 5 2 xsssx xxbxx xbabx xxbxx xxxxx ab sss
 

Sample Output
6 4 1
 

Hint

Explanation for the second testcase:

For pattern ab , the occurences are { (2, 3), (3, 3) }, { (3, 2), (3, 3) }, { (3, 3), (3, 4) }, { (3, 3), (4, 3) }.
For pattern sss , the only occurence is { (1, 2), (1, 3), (1, 4) }.
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-05-19 02:04:11, Gzip enabled