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 }
  • 相关阅读:
    PIE-SDK For C++栅格数据的金字塔创建
    PIE-SDK For C++栅格数据集的读写
    PIE-SDK For C++栅格数据集的读取
    PIE-SDK For C++内存栅格数据的创建
    【系列文章】数据结构与算法——图
    大小端模式
    几种常见的排序方法(C语言实现)
    WPF——数据绑定(二)绑定方法—绑定本地对象
    WPF——数据绑定(一)什么是数据绑定
    WPF多窗口传参解决方案
  • 原文地址:https://www.cnblogs.com/titicia/p/3917100.html
Copyright © 2011-2022 走看看