码迷,mamicode.com
首页 > 其他好文 > 详细

记票统计(HJ94)

时间:2020-07-29 17:46:11      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:end   val   return   int   include   pac   names   ++   +=   

输入输出格式一定要与样例一样,连一个空格,逗号都不能少,否者就会报错。

C++代码如下:

#include <iostream>
#include <vector>
#include <string>
#include <map>

using namespace std;

int main()
{
    int cCount = 0;
    int vCount = 0;

    while (cin >> cCount)
    {
        map<string, int> map;
        vector<string> vec(cCount,"");
        string str = "";

        for (int i = 0; i<cCount && cin >> str; i++)
        {
            map[str] = 0;
            vec[i] = str;
        }

        cin >> vCount;

        for (int i = 0; i<vCount && cin >> str; i++)
            if (map.find(str) != map.end())
                map[str]++;

        int count = 0;
        for (auto it = vec.begin(); it != vec.end(); it++)
        {
            cout << *it << " : " << map[*it] << endl;
            count += map[*it];
        }

        cout << "Invalid : " << vCount - count << endl;
    }

    return 0;
}

 

记票统计(HJ94)

标签:end   val   return   int   include   pac   names   ++   +=   

原文地址:https://www.cnblogs.com/repinkply/p/13397976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!