• 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 }
  • 相关阅读:
    BootStrap Table前台和后台分页对JSON格式的要求
    神奇的外部嵌套(使用ROW_NUMBER()查询带条件的时候提示列名无效)
    要想获取select的值,使用ng-modle,否则无法获取select 的值
    Angular使用操作事件指令ng-click传多个参数示例
    Jenins 邮件通知
    Jenkins 流水线(Pipeline)
    Jenkins Master-Slave 架构
    Jenins 参数化构建
    Jenkins 用户权限管理
    Jenkins 安装
  • 原文地址:https://www.cnblogs.com/titicia/p/3917100.html
Copyright © 2020-2023  润新知