zoukankan      html  css  js  c++  java
  • 杭电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
     
     
  • 相关阅读:
    利用SuperMap Deskpro进行Peking 54到WGS84的转换
    远程序列化xml文件(可用于自动更新程序中版本号的比较,更新文件的读取等)
    [转]C#导出到EXCEL
    [转]常用数学公式
    CLR Via C#系列学习笔记之委托
    黑马程序员C#语言中的三种循环:while 循环、dowhile 循环、for 循环。
    .net2005中GridView或者Datalist等超級流行的分頁
    Array.splice()删除数组中重复的数据
    .net中常需对文件夹以及常用的操作方法
    文件的上传下载示例
  • 原文地址:https://www.cnblogs.com/zhangchengbing/p/3247476.html
Copyright © 2011-2022 走看看