记录编号 331117 评测结果 AAAAAAAAAA
题目名称 [郑州101中学] 月考 最终得分 100
用户昵称 Gravatarsxysxy 是否通过 通过
代码语言 C++ 运行时间 0.359 s
提交时间 2016-10-27 10:33:51 内存使用 0.25 MiB
显示代码纯文本
#include <iostream>
#include <fstream>
#include <ext/pb_ds/hash_policy.hpp>
#include <ext/pb_ds/assoc_container.hpp>
using namespace std;
using namespace __gnu_pbds;
int main()
{
    ios::sync_with_stdio(false);
    ifstream inf("mtest.in");
    ofstream ouf("mtest.out");
    
    int n;
    cc_hash_table<string, bool> t;
    inf >> n;
    while(n--)
    {
        string tmp;
        inf >> tmp;
        t[tmp] = true;
    }
    inf >> n;
    int cnt = 0;
    while(n--)
    {
        string tmp;
        inf >> tmp;
        if(t[tmp])cnt++;
    }
    ouf << cnt;
    return 0;
}