CF1117F.Crisp String

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

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).

输入输出样例

  • 输入#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
    

说明/提示

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.

首页