Question 409-Excuses, Excuses!

Source: Internet
Author: User
Tags alphabetic character keyword list

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 () defines the number of keywords to be used in the search. the second number () 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 () 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 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!

[Code ]:


[Cpp]
/*********************************
* Date:
* Author: SJF0115
* Question: Question 409-Excuses, Excuses!
* Source: http://uva.onlinejudge.org/index.php? Option = com_onlinejudge & Itemid = 8 & category = 6 & page = show_problem & problem = 350
* Result: AC
* Source: Ultraviolet
* Conclusion:
**********************************/
# Include <stdio. h>
# Include <string. h>
Char keywords [21] [21];
Char str [21] [1, 101];
// Match
Int Match (char temp [], int M ){
For (int I = 0; I <M; I ++ ){
If (strcmp (temp, keywords [I]) = 0 ){
// Printf ("% s", temp );
Return 1;
}
}
Return 0;
}
 
Int main (){
Int I, j, M, N, k, Max, MaxIndex, Case = 1;
Char temp [21];
Int count [21];
// Freopen ("C: \ Users \ XIAOSI \ Desktop \ acm.txt", "r", stdin );
While (scanf ("% d \ n", & M, & N )! = EOF ){
Memset (count, 0, sizeof (int) * N );
Max =-1;
// Enter keywords
For (I = 0; I <M; I ++ ){
Gets (keywords [I]);
}
// Input an excuse
For (I = 0; I <N; I ++ ){
Gets (str [I]);
Int len = strlen (str [I]);
For (j = 0; j <len ;){
K = 0;
// Extract words
While (str [I] [j]> = 'A' & str [I] [j] <= 'Z ') | (str [I] [j]> = 'A' & str [I] [j] <= 'Z ')){
// Convert to lowercase
If (str [I] [j]> = 'A' & str [I] [j] <= 'Z '){
Temp [k ++] = str [I] [j]-'A' + 'a ';
}
Else {
Temp [k ++] = str [I] [j];
}
J ++;
}
J ++;
Temp [k] = '\ 0 ';
// Match the keyword
If (Match (temp, M )){
Count [I] ++;
}
}
// Maximum number of excuse keywords
If (Max <count [I]) {
Max = count [I];
}
} //
// Output
Printf ("Excuse Set # % d \ n", Case );
Case ++;
// The worst excuse
For (I = 0; I <N; I ++ ){
If (Max = count [I]) {
Puts (str [I]);
}
}
Printf ("\ n ");
}
Return 0;
}
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.