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 to your program will consist of multiple sets of data.
SPMamp
".,!?&] not including the square brackets and will not exceed 70 characters in length.For each input set, you are to print the worst excuse(s) from the list.
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.
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?
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!
第一次做的时候,读入待匹配串excuse用回车符'\N',作为一行判断结束的标志,结果一直runtime error,估计最后一行输入是没有回车的。
以前也用过回车作为结束的标示符结果有几次对有几次time limit expend;
总之以后不乱用了runtime error n次都找不到错误好痛苦。
后来想偷懒用stricmp结果编译错误。
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <math.h>
int main()
{char key[21][81],s[21][81],ch[81],x;
int f,T,t,num,k,i,j,n,m,l,a[21],max,sum=0;
while (scanf("%d%d",&n,&m)!=EOF)
{++sum;
getchar();
for (i=1;i<=n;i++)
gets(key[i]);
for (i=1;i<=m;i++)
{gets(s[i]);
a[i]=0;
}
for (k=1;k<=m;k++)
{l=strlen(s[k]);
num=0;j=0;
while (num<l)
{if (isalpha(s[k][num])) {ch[j]=s[k][num];++j;}
else {ch[j]='\0';
for (i=1;i<=n;i++)
{t=strlen(key[i]);
T=strlen(ch);
f=1;
if (t==T)
{
for (j=0;j<t;j++)
if (!((key[i][j]==ch[j])||(abs(key[i][j]-ch[j])==32))) {f=0;break;}
if (f) {++a[k];break;}
}
}
j=0;
}
++num;
}
}
max=0;
for (i=1;i<=m;i++)
if (a[i]>max) max=a[i];
printf("Excuse Set #%d\n",sum);
for (i=1;i<=m;i++)
if (a[i]==max) puts(s[i]);
printf("\n");
}
}