杭电15题 The Cow Lexicon

Problem Description

Few know that the cows have their own dictionary with W (1 ≤ W ≤ 600) words, each containing no more 25 of the characters 'a'..'z'. Their cowmunication system, based on mooing, is not very accurate; sometimes they hear words that do not make any sense. For instance, Bessie once received a message that said "browndcodw". As it turns out, the intended message was "browncow" and the two letter "d"s were noise from other parts of the barnyard.

The cows want you to help them decipher a received message (also containing only characters in the range 'a'..'z') of length L (2 ≤ L ≤ 300) characters that is a bit garbled. In particular, they know that the message has some extra letters, and they want you to determine the smallest number of letters that must be removed to make the message a sequence of words from the dictionary.

 
Input
Line 1: Two space-separated integers, respectively: W and L Line 2: L characters (followed by a newline, of course): the received message Lines 3..W+2: The cows' dictionary, one word per line
 
Output
Line 1: a single integer that is the smallest number of characters that need to be removed to make the message a sequence of dictionary words.
 
Sample Input
6 10
browndcodw
cow
milk
white
black
brown
farmer
 
Sample Output
2
 
Source
PKU
题意:给定一个字符串检查最大数量的匹配单词是多少;
思路:
AC代码:
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<string>
 5 #include<algorithm>
 6 #include<cmath>
 7 
 8 using namespace std;
 9 
10 int main()
11 {
12     int dp[310]={0};
13     string str[605];
14     int w,l;
15     cin>>w>>l;//输入w和l
16     string s;
17     cin>>s;//输入待检测的字符串;
18     int i;
19     for(i=0;i<w;i++)
20         cin>>str[i];
21     int j;int k;
22     dp[l]=0;
23     int right=0;
24     int len;
25     for(i=l-1;i>=0;i--)
26     {
27         dp[i]=dp[i+1]+1;
28         for(j=0;j<w;j++)
29         {
30             if(s[i]==str[j][0])
31             {//进行匹配;
32                 k=i;
33                 len=str[j].length();
34                 right=0;
35                 while(right<len&&k<l)
36                 {
37                     if(s[k]==str[j][right]){right++;}
38                     k++;
39                     if(right==len)
40                     {
41                         dp[i]=min(dp[i],dp[k]+k-i-len);
42                         break;
43                     }
44                 }
45             }
46         }
47     }
48     cout<<dp[0]<<endl;
49     return 0;
50 }
View Code

 

 
 
posted @ 2013-08-09 10:06  秋心无波  阅读(202)  评论(0编辑  收藏  举报