记录编号 224206 评测结果 AAAAAAAA
题目名称 [NOIP 2001]统计单词个数 最终得分 100
用户昵称 GravatarMagic_Sheep 是否通过 通过
代码语言 C++ 运行时间 0.031 s
提交时间 2016-02-15 21:16:36 内存使用 0.51 MiB
显示代码纯文本
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
#define maxn 205
#define maxk 41

int p,n,k,caseno;
char s[maxn];
int mlen[maxn];
char word[6][maxn];
int g[maxn][maxn];
int h[maxn][maxk];

int main()
{
	freopen("tjdcgs.in","r",stdin);
	freopen("tjdcgs.out","w",stdout);
	
	int i,j,u,v;	
	
	cin>>caseno;
	while(caseno-->0)
	{
		cin>>p>>k;
		n=p*20;
		for(i=1;i<=n;i++)
			cin>>s[i];	
		cin>>p;
		for(i=0;i<p;i++)
			cin>>word[i];
		s[n+1]=0;
		for(i=1;i<=n;i++)
		{
			mlen[i]=maxn;
			for(j=0;j<p;j++)
				if( (strstr(s+i,word[j])==s+i) && (strlen(word[j])<mlen[i]) )
					mlen[i]=strlen(word[j]);
		}
		for(i=1;i<=n;i++)
			for(j=i;j<=n;j++)
			{
				g[i][j]=0;
				for(u=i;u<=j;u++)
					if(u+mlen[u]-1<=j)
						g[i][j]++;
			}
		memset(h,0,sizeof(h));
		for(j=1;j<=k;j++)
			for(u=j;u<=n;u++)
				for(v=u;v<=n;v++)
					if(h[u-1][j-1]+g[u][v]>h[v][j])
						h[v][j]=h[u-1][j-1]+g[u][v];
		cout<<h[n][k]<<endl;
	}
	
	return 0;
}