CF88B.Keyboard

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Vasya learns to type. He has an unusual keyboard at his disposal: it is rectangular and it has nn rows of keys containing mm keys in each row. Besides, the keys are of two types. Some of the keys have lowercase Latin letters on them and some of the keys work like the "Shift" key on standard keyboards, that is, they make lowercase letters uppercase.

Vasya can press one or two keys with one hand. However, he can only press two keys if the Euclidean distance between the centers of the keys does not exceed xx . The keys are considered as squares with a side equal to 1. There are no empty spaces between neighbouring keys.

Vasya is a very lazy boy, that's why he tries to type with one hand as he eats chips with his other one. However, it is possible that some symbol can't be typed with one hand only, because the distance between it and the closest "Shift" key is strictly larger than xx . In this case he will have to use his other hand. Having typed the symbol, Vasya returns other hand back to the chips.

You are given Vasya's keyboard and the text. Count the minimum number of times Vasya will have to use the other hand.

输入格式

The first line contains three integers nn , mm , xx ( 1<=n,m<=30,1<=x<=501<=n,m<=30,1<=x<=50 ).

Next nn lines contain descriptions of all the keyboard keys. Each line contains the descriptions of exactly mm keys, without spaces. The letter keys are marked with the corresponding lowercase letters. The "Shift" keys are marked with the "S" symbol.

Then follow the length of the text qq (1<=q<=5105)(1<=q<=5·10^{5}) . The last line contains the text TT , which consists of qq symbols, which are uppercase and lowercase Latin letters.

输出格式

If Vasya can type the text, then print the minimum number of times he will have to use his other hand. Otherwise, print "-1" (without the quotes).

输入输出样例

  • 输入#1

    2 2 1
    ab
    cd
    1
    A
    

    输出#1

    -1
    
  • 输入#2

    2 2 1
    ab
    cd
    1
    e
    

    输出#2

    -1
    
  • 输入#3

    2 2 1
    ab
    cS
    5
    abcBA
    

    输出#3

    1
    
  • 输入#4

    3 9 4
    qwertyuio
    asdfghjkl
    SzxcvbnmS
    35
    TheQuIcKbRoWnFOXjummsovertHeLazYDOG
    

    输出#4

    2
    

说明/提示

In the first sample the symbol "A" is impossible to print as there's no "Shift" key on the keyboard.

In the second sample the symbol "e" is impossible to print as there's no such key on the keyboard.

In the fourth sample the symbols "T", "G" are impossible to print with one hand. The other letters that are on the keyboard can be printed. Those symbols come up in the text twice, thus, the answer is 2.

首页