题库练习 Crisp String
← 上一题 下一题 →

A12439 | Crisp String

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a string of length $n$ . Each character is one of the first $p$ lowercase Latin letters.

You are also given a matrix $A$ with binary values of size $p \times p$ . This matrix is symmetric ( $A_{ij} = A_{ji}$ ). $A_{ij} = 1$ means that the string can have the $i$ -th and $j$ -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 $A$ ).

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 $n$ and $p$ ( $1 \le n \le 10^5$ , $1 \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 $p$ lowercase Latin letters and that is it crisp. Some of these $p$ first Latin letters might not be present in the string.

Each of the next $p$ lines contains $p$ integer numbers — the matrix $A$ ( $0 \le A_{ij} \le 1$ , $A_{ij} = A_{ji}$ ). $A_{ij} = 1$ means that the string can have the $i$ -th and $j$ -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).

输入输出样例

输入 #1
7 3
abacaba
0 1 1
1 0 0
1 0 0
输出 #1
7
输入 #2
7 3
abacaba
1 1 1
1 0 0
1 0 0
输出 #2
0
输入 #3
7 4
bacadab
0 1 1 1
1 0 0 0
1 0 0 0
1 0 0 0
输出 #3
5
输入 #4
3 3
cbc
0 0 0
0 0 1
0 1 0
输出 #4
0
C++ 编辑器
输入
输出