zoukankan      html  css  js  c++  java
  • ZOJ 3207 80ers' Memory (F)

    80ers' Memory

    Time Limit: 1 Second      Memory Limit: 32768 KB

    I guess most of us are so called 80ers, which means that we were born in the 1980's. This group of 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?

    Input

    There 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 be Ni words separated by white spaces. Each of these words has no more than 20 characters.
    All the words are case sensitive.

    Output

    For each of these K people, you are asked to count the number of typical 80ers' keywords on his/her list and output it in a single line.

    Sample Input

    4
    Saint_Seiya
    YoYo_ball
    Super_Mario
    HuLuWa
    3
    2 Saint_Seiya TiaoFangZi
    1 KTV
    3 HuLuWa YOYO_BALL YoYo_ball
    

    Sample Output

    1
    0
    2

    水题
     1 #include <iostream>
     2 #include <cstring>
     3 #include <cstdio>
     4 #include <string>
     5 using namespace std;
     6 #define maxn 105
     7 int N, K;
     8 string s[maxn];
     9 struct Node{
    10     int n;
    11     string word[maxn];
    12 }node[maxn];
    13 int main(){
    14     scanf("%d", &N);
    15     for(int i = 1; i <= N; i++) cin>>s[i];
    16     scanf("%d", &K);
    17     for(int i = 1; i <= K; i++){
    18         scanf("%d", &node[i].n);
    19         for(int j = 1; j <= node[i].n; j++) cin>>node[i].word[j];
    20     }
    21     
    22     for(int i = 1; i <= K; i++){
    23         int cnt = 0;
    24         for(int j = 1; j <= node[i].n; j++){
    25             for(int k = 1; k <= N; k++){
    26                 if(node[i].word[j] == s[k]){
    27                     cnt++;break;
    28                 }
    29             }
    30         }
    31         printf("%d
    ", cnt);
    32     }
    33     
    34     return 0;
    35 }
  • 相关阅读:
    关于typedef在struct使用上的一些问题
    软件工程--趣盒--第四次团队作业--软件实现与测试
    趣盒——快速入门手册
    软件工程趣盒软件设计
    软件工程项目需求分析
    在VS2017下配置OpenGL
    破阵子青铜团队介绍以及项目背景介绍
    海客谈瀛洲,烟涛微茫信难求——微信
    第一次作业:扑通扑通 我的IT
    5.线性回归算法
  • 原文地址:https://www.cnblogs.com/titicia/p/3917100.html
Copyright © 2011-2022 走看看