• UVa 409 Excuses, Excuses!


    哈哈,虽然是一道字符串水题,可是拿到一个1A还是很开心的!

    题意就是给一些keywords(子串)和Excuse(母串),然后输出包含keywords最多的Excuse,如果相等的话,按任意顺序全部输出即可。

    解题时有几点需要注意:

    1、一个keyword可能在Excuse里重复多次。

    2、每个keyword的左右两端必须是行首或行尾或不是字母的字符。

    3、Excuse里貌似是不区分大小写的,所以读入所有的Excuse后需要再memcpy一份,把那份用来全部转化为大写或小写,原来的那份作输出用。

    Excuses,Excuses!

    Judge Ito is having a problem with people subpoenaed for jury duty giving rather lame excuses in order to avoid serving. In order to reduce the amount of time required listening to goofy excuses, Judge Ito has asked that you write a program that will search for a list of keywords in a list of excuses identifying lame excuses. Keywords can be matched in an excuse regardless of case.

    Input

    Input to your program will consist of multiple sets of data.

    • Line 1 of each set will contain exactly two integers. The first number ( tex2html_wrap_inline30 ) defines the number of keywords to be used in the search. The second number ( tex2html_wrap_inline32 ) defines the number of excuses in the set to be searched.
    • Lines 2 through K+1 each contain exactly one keyword.
    • Lines K+2 through K+1+E each contain exactly one excuse.
    • All keywords in the keyword list will contain only contiguous lower case alphabetic characters of length L ( tex2html_wrap_inline42 ) and will occupy columns 1 through L in the input line.
    • All excuses can contain any upper or lower case alphanumeric character, a space, or any of the following punctuation marks [SPMamp".,!?&] not including the square brackets and will not exceed 70 characters in length.
    • Excuses will contain at least 1 non-space character.

    Output

    For each input set, you are to print the worst excuse(s) from the list.

    • The worst excuse(s) is/are defined as the excuse(s) which contains the largest number of incidences of keywords.
    • If a keyword occurs more than once in an excuse, each occurrance is considered a separate incidence.
    • A keyword ``occurs" in an excuse if and only if it exists in the string in contiguous form and is delimited by the beginning or end of the line or any non-alphabetic character or a space.

    For each set of input, you are to print a single line with the number of the set immediately after the string ``Excuse Set #". (See the Sample Output). The following line(s) is/are to contain the worst excuse(s) one per line exactly as read in. If there is more than one worst excuse, you may print them in any order.

    After each set of output, you should print a blank line.

    Sample Input

    5 3
    dog
    ate
    homework
    canary
    died
    My dog ate my homework.
    Can you believe my dog died after eating my canary... AND MY HOMEWORK?
    This excuse is so good that it contain 0 keywords.
    6 5
    superhighway
    crazy
    thermonuclear
    bedroom
    war
    building
    I am having a superhighway built in my bedroom.
    I am actually crazy.
    1234567890.....,,,,,0987654321?????!!!!!!
    There was a thermonuclear war!
    I ate my dog, my canary, and my homework ... note outdated keywords?

    Sample Output

    Excuse Set #1
    Can you believe my dog died after eating my canary... AND MY HOMEWORK?
    
    Excuse Set #2
    I am having a superhighway built in my bedroom.
    There was a thermonuclear war!
     1 //#define LOCAL
     2 #include <iostream>
     3 #include <cstring>
     4 #include <cstdio>
     5 using namespace std;
     6 
     7 char key[22][22];
     8 char excuse1[22][75], excuse2[22][75];
     9 int sum[22];//存放每个excuse中keywords出现的总次数
    10 
    11 int match(char s1[], char s2[]);
    12 
    13 int main(void)
    14 {
    15     #ifdef LOCAL
    16         freopen("409in.txt", "r", stdin);
    17     #endif
    18     int k, e, i, kase = 0, j;
    19     while(scanf("%d %d", &k, &e) == 2)
    20     {
    21         ++kase;
    22         getchar();
    23         for(i = 0; i < k; ++i)
    24             gets(key[i]);
    25         for(i = 0; i < e; ++i)
    26         {
    27             gets(excuse1[i]);
    28             memcpy(excuse2[i], excuse1[i], sizeof(excuse1[i]));
    29             for(j = 0; j < strlen(excuse2[i]); ++j)
    30                 excuse2[i][j] = tolower(excuse2[i][j]);//将所有字母转化为小写
    31         }
    32 
    33         memset(sum, 0, sizeof(sum));
    34         int maxn = 0;
    35         for(i = 0; i < e; ++i)
    36         {
    37             for(j = 0; j < k; ++j)
    38             {
    39                 sum[i] += match(excuse2[i], key[j]);
    40             }
    41             if(sum[i] > maxn)
    42                 maxn = sum[i];
    43         }
    44 
    45         cout << "Excuse Set #" << kase << endl;
    46         for(i = 0; i < e; ++i)
    47         {
    48             if(sum[i] == maxn)
    49                 cout << excuse1[i] << endl;
    50         }
    51         cout << endl;
    52     }
    53     return 0;
    54 }
    55 int match(char s1[], char s2[])
    56 {
    57     int i = 0, l1, l2, count = 0, j;
    58     l1 = strlen(s1);
    59     l2 = strlen(s2);
    60     while(i + l2 < l1)//一个关键词可能匹配多次
    61     {
    62         int j = i, k = 0;
    63         if((i==0||s1[i-1]<'a'||s1[i-1]>'z') &&
    64             (i+l2==l1)||s1[i+l2]<'a'||s1[i+l2]>'z')//保证所匹配的单词能被分隔开
    65         {
    66             for(; k < l2; ++j, ++k)
    67             {
    68                 if(s1[j] != s2[k])
    69                 break;
    70             }
    71             if(k == l2)
    72                 ++count;
    73         }
    74         ++i;
    75     }
    76     return count;
    77 }
    代码君
  • 相关阅读:
    jquery 建议编辑器
    开发中可能会用到的几个 jQuery 小提示和技巧
    Httpsqs的安装以及安装过程错误的解决方法 转
    ajax加载模块实时刷新的原理
    好用的php类库和方法
    js中masonry与infinitescroll结合 形成瀑布流
    网站架构从无到有
    可扩展Web架构与分布式系统
    JSONP跨域的原理解析
    你写的前端到底用没用到这些
  • 原文地址:https://www.cnblogs.com/AOQNRMGYXLMV/p/3817633.html
Copyright © 2020-2023  润新知