博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa 409 Excuses, Excuses!
阅读量:5075 次
发布时间:2019-06-12

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

哈哈,虽然是一道字符串水题,可是拿到一个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 3dogatehomeworkcanarydiedMy 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 5superhighwaycrazythermonuclearbedroomwarbuildingI 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 #1Can you believe my dog died after eating my canary... AND MY HOMEWORK?Excuse Set #2I am having a superhighway built in my bedroom.There was a thermonuclear war!
1 //#define LOCAL 2 #include 
3 #include
4 #include
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 LOCAL16 freopen("409in.txt", "r", stdin);17 #endif18 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 }
代码君

 

转载于:https://www.cnblogs.com/AOQNRMGYXLMV/p/3817633.html

你可能感兴趣的文章
【bzoj3932】 CQOI2015—任务查询系统
查看>>
【bzoj3938】 Robot
查看>>
【bzoj2460】 BeiJing2011—元素
查看>>
Gridview的RowDataBound事件(添加删除提示,改变背景颜色)
查看>>
评分标准及转会情况
查看>>
android的xml中怎么实现按钮按下去变颜色
查看>>
2-Eleventh Scrum Meeting20151211
查看>>
看毛片算法
查看>>
selenium-百度搜索框输入后,定位联想下拉框元素
查看>>
Http的请求的全过程
查看>>
(剑指Offer)面试题38:数字在排序数组中出现的次数
查看>>
orderby
查看>>
3105: [cqoi2013]新Nim游戏
查看>>
Xcode10和iOS12,library not found for -lstdc++.6.0.9,
查看>>
Raid详解
查看>>
c++面试遇到问题
查看>>
jvm 内存参数
查看>>
【转】NDK上建立自己的项目
查看>>
web测试方法总结
查看>>
原生js实现ajax方法
查看>>