博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(状态压缩dp)Codeforces 543 C-Remembering Strings
阅读量:5250 次
发布时间:2019-06-14

本文共 2804 字,大约阅读时间需要 9 分钟。

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 aijcoins, 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.

Input

The first line contains two integers nm (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).

Output

Print a single number — the answer to the problem.

Example

Input
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
Output
3
Input
4 3 abc aba adc ada 10 10 10 10 1 10 10 10 10 10 1 10
Output
2
Input
3 3 abc ada ssa 1 1 1 1 1 1 1 1 1
Output
0

 

第一次写状压dp。状压dp一般是n比较小的情况,这样可以用n位二进制数表示一个状态,依次来进行动态规划。

对于本题,用col[i][j]表示为了使第i行符合,将第j列中所有与第i行相同的(除了最大的,且可能包括第i行)改成不同的数(n<=20 有26个字母,一定可以)所花费的价格。st[i][j]表示按上述操作后必定符合题意要求的行用二进制表示的状态。

用dp[i]表示状态i下最小的花费(i范围为[0,(1<<n)-1])

由为使第i行可行,可能通过只修改其第j列,也可能按上述方式修改第j列的其他行,来进行递推即可。

1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #define mp make_pair14 //#define P make_pair15 #define MIN(a,b) (a>b?b:a)16 //#define MAX(a,b) (a>b?a:b)17 typedef long long ll;18 typedef unsigned long long ull;19 const int MAX=1<<21;20 const int MAX_V=1e3+5;21 const int INF=1e9+5;22 const ll INF2=4e18+5;23 const double M=4e18;24 using namespace std;25 const int MOD=1e9+7;26 typedef pair
pii;27 const double eps=0.000000001;28 #define rank rankk29 int n,m;30 int dp[MAX],cost[25][25],Max;31 int col[25][25],st[25][25];32 char a[25][25];33 int main()34 {35 scanf("%d%d",&n,&m);36 for(int i=0;i
>j)&1))66 {67 int now=1<

 

转载于:https://www.cnblogs.com/quintessence/p/6936259.html

你可能感兴趣的文章
Linux SPI总线和设备驱动架构之四:SPI数据传输的队列化
查看>>
SIGPIPE并产生一个信号处理
查看>>
CentOS
查看>>
Linux pipe函数
查看>>
java equals 小记
查看>>
爬虫-通用代码框架
查看>>
2019春 软件工程实践 助教总结
查看>>
YUV 格式的视频呈现
查看>>
Android弹出框的学习
查看>>
现代程序设计 作业1
查看>>
在android开发中添加外挂字体
查看>>
Zerver是一个C#开发的Nginx+PHP+Mysql+memcached+redis绿色集成开发环境
查看>>
多线程实现资源共享的问题学习与总结
查看>>
Learning-Python【26】:反射及内置方法
查看>>
torch教程[1]用numpy实现三层全连接神经网络
查看>>
java实现哈弗曼树
查看>>
转:Web 测试的创作与调试技术
查看>>
python学习笔记3-列表
查看>>
程序的静态链接,动态链接和装载 (补充)
查看>>
关于本博客说明
查看>>