CF543C.Remembering Strings
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You have multiset of n strings of the same length, consisting of lowercase English letters. We will say that those strings are easy to remember if for each string there is some position i and some letter c of the English alphabet, such that this string is the only string in the multiset that has letter c in position i .
For example, a multiset of strings {"abc", "aba", "adc", "ada"} are not easy to remember. And multiset {"abc", "ada", "ssa"} is easy to remember because:
- the first string is the only string that has character c in position 3 ;
- the second string is the only string that has character d in position 2 ;
- the third string is the only string that has character s in position 2 .
You want to change your multiset a little so that it is easy to remember. For aij coins, you can change character in the j -th position of the i -th string into any other lowercase letter of the English alphabet. Find what is the minimum sum you should pay in order to make the multiset of strings easy to remember.
输入格式
The first line contains two integers n , m ( 1<=n,m<=20 ) — the number of strings in the multiset and the length of the strings respectively. Next n lines contain the strings of the multiset, consisting only of lowercase English letters, each string's length is m .
Next n lines contain m integers each, the i -th of them contains integers ai1,ai2,...,aim ( 0<=aij<=106 ).
输出格式
Print a single number — the answer to the problem.
输入输出样例
输入#1
4 5 abcde abcde abcde abcde 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
输出#1
3
输入#2
4 3 abc aba adc ada 10 10 10 10 1 10 10 10 10 10 1 10
输出#2
2
输入#3
3 3 abc ada ssa 1 1 1 1 1 1 1 1 1
输出#3
0