您的位置:首页 > 其它

ZCMU新人训练赛F

2017-08-03 22:28 253 查看

F - 80ers' Memory ZOJ- 3207

 

I guess most of us are so called 80ers, which means that we were born in the 1980's. This groupof people shared a lot of common memories. For example, the Saint Seiya, the YoYo ball, the Super Mario, and so on. Do you still remember these?InputThere will be ONLY ONE test case.The test case begins with a positive integer N, (N < 100).Then there will be N lines each containing a single word describing a keyword of the typical 80ers' memories. Each word consists of letters, [a-zA-Z], numbers, [0-9], and the underline, '_'. The length of each word would be no more than 20.Then one line follows with a positive integer K, (K < 100).The last part of the test case will be K lines. The i-th line contains the keywords given by the i-th person and starts with a positive integer Ni. Then there will beNi words separated by whitespaces. Each of these words has no more than 20 characters.All the words are case sensitive.<strong< dd="">OutputFor each of these K people, you are asked to count the number of typical 80ers' keywordson his/her list and output it in a single line.<strong< dd="">Sample Input
4
Saint_Seiya
YoYo_ball
Super_Mario
HuLuWa
3
2 Saint_Seiya TiaoFangZi
1 KTV
3 HuLuWa YOYO_BALL YoYo_ball
<strong< dd="">Sample Output
1
0
2
AC代码:
#include<iostream>#include<cstdio>#include<string.h>#include<cstring>#include<queue>#include<vector>#include<set>#include<stack>#include<map>#include<climits>using namespace std;#define LL long longint main(){        char ch[110][30],s[30];        int n;        while(scanf("%d",&n)!=EOF)        {                for(int i=0;i<n;i++)                        scanf("%s",ch[i]);                int m;                scanf("%d",&m);                while(m--)                {                        int a,sum=0;                        scanf("%d",&a);                        for(int i=0;i<a;i++)                        {                                scanf("%s",s);                                for(int j=0;j<n;j++)                                        if(strcmp(s,ch[j])==0)                                        sum++;                        }                        printf("%d\n",sum);                }        }        return 0;}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: