#P1117F. Crisp String

Crisp String

Description

You are given a string of length nn. Each character is one of the first pp lowercase Latin letters.

You are also given a matrix AA with binary values of size p×pp \times p. This matrix is symmetric (Aij=AjiA_{ij} = A_{ji}). Aij=1A_{ij} = 1 means that the string can have the ii-th and jj-th letters of Latin alphabet adjacent.

Let's call the string crisp if all of the adjacent characters in it can be adjacent (have 1 in the corresponding cell of matrix AA).

You are allowed to do the following move. Choose any letter, remove all its occurrences and join the remaining parts of the string without changing their order. For example, removing letter 'a' from "abacaba" will yield "bcb".

The string you are given is crisp. The string should remain crisp after every move you make.

You are allowed to do arbitrary number of moves (possible zero). What is the shortest resulting string you can obtain?

The first line contains two integers nn and pp (1n1051 \le n \le 10^5, 1p171 \le p \le 17) — the length of the initial string and the length of the allowed prefix of Latin alphabet.

The second line contains the initial string. It is guaranteed that it contains only first pp lowercase Latin letters and that is it crisp. Some of these pp first Latin letters might not be present in the string.

Each of the next pp lines contains pp integer numbers — the matrix AA (0Aij10 \le A_{ij} \le 1, Aij=AjiA_{ij} = A_{ji}). Aij=1A_{ij} = 1 means that the string can have the ii-th and jj-th letters of Latin alphabet adjacent.

Print a single integer — the length of the shortest string after you make arbitrary number of moves (possible zero).

Input

The first line contains two integers nn and pp (1n1051 \le n \le 10^5, 1p171 \le p \le 17) — the length of the initial string and the length of the allowed prefix of Latin alphabet.

The second line contains the initial string. It is guaranteed that it contains only first pp lowercase Latin letters and that is it crisp. Some of these pp first Latin letters might not be present in the string.

Each of the next pp lines contains pp integer numbers — the matrix AA (0Aij10 \le A_{ij} \le 1, Aij=AjiA_{ij} = A_{ji}). Aij=1A_{ij} = 1 means that the string can have the ii-th and jj-th letters of Latin alphabet adjacent.

Output

Print a single integer — the length of the shortest string after you make arbitrary number of moves (possible zero).

Sample Input 1

7 3
abacaba
0 1 1
1 0 0
1 0 0

Sample Output 1

7

Sample Input 2

7 3
abacaba
1 1 1
1 0 0
1 0 0

Sample Output 2

0

Sample Input 3

7 4
bacadab
0 1 1 1
1 0 0 0
1 0 0 0
1 0 0 0

Sample Output 3

5

Sample Input 4

3 3
cbc
0 0 0
0 0 1
0 1 0

Sample Output 4

0

Note

In the first example no letter can be removed from the initial string.

In the second example you can remove letters in order: 'b', 'c', 'a'. The strings on the intermediate steps will be: "abacaba" \rightarrow "aacaa" \rightarrow "aaaa" \rightarrow "".

In the third example you can remove letter 'b' and that's it.

In the fourth example you can remove letters in order 'c', 'b', but not in the order 'b', 'c' because two letters 'c' can't be adjacent.