시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB33151241.379%

문제

One of the main goals in sending Curiosity to Mars is to search for more evidence that Mars may have had water on its surface in the past, or perhaps even in the present? To figure out whether there was water, scientists use various clues from images, such as rust and other evidence of oxidation. In this question, you are to explore pictures of Mars surface, and find evidence of water in them if it exists.

Each picture will be given to you as a rectangle of h × w pixels, with 1 ≤ h,w ≤ 50. Each pixel may be indicative of different types of material, which will be denoted by a letter from the upper-case alphabet ‘A’–‘Z’. (No other values will occur.) Some of these letters will be marked as special, in that they indicate a clue for water. You will be given a minimum size 1 ≤ m ≤ min(h,w), and are to find the largest density of special letters in any subrectangle of size at least m × m.

입력

The first line is the number K of input data sets, followed by the K data sets, each of the following form:

The first line contains three integers h,w,m, the height of the image, the width of the image, and the minimum rectangle size.

Next is a line with a string of 1–26 letters from ‘A’–‘Z’, with no repetitions (but not necessarily sorted). These are the special, water-indicating letters.

This is followed by h lines, each consisting of w upper-case letters (and nothing else), each describing one row of the image.

출력

For each data set, output “Data Set x:” on a line by itself, where x is its number. On the next line, output the maximum density of water-indicating pixels in any m × m or larger rectangle. This should be output as a fraction x/y, where x is the number of water-indicating pixels, and y is the number of total pixels in the maximizing rectangle. If there are multiple rectangles of different sizes giving the same ratio, then output the ratio with the largest number y of pixels in the rectangle. Each data set should be followed by a blank line.

예제 입력 1

1
6 13 3
YX
ITTTTHHHHTTTT
IXYOXOOOOOOXI
IOOOXOOOOOXXJ
IYOOOOXOOOOOI
IXXOYOOYOOOOI
IAAAAAXAXAAAJ

예제 출력 1

Data Set 1:
8/16