题解 | #记票统计#

记票统计

https://www.nowcoder.com/practice/3350d379a5d44054b219de7af6708894

// HJ94 计票统计.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include<iostream>
#include<bits/stdc++.h>

using namespace std;

int main()
{
	int m, n;
	vector<string>str;
	vector<string>match;
	while (cin >> m)
	{
		for (int i = 0; i < m; i++)
		{
			string x;
			cin >> x;
			str.push_back(x);
		}
		cin >> n;
		for (int i = 0; i < n; i++)
		{
			string x;
			cin >> x;
			match.push_back(x);
		}
		int l1 = str.size(), l2 = match.size();
		vector<int>num(l1);
		/*for (auto c : str)
			cout << c << endl;
		for (auto x : match)
			cout << x << endl;*/
		for (int i = 0; i < str.size(); i++)
		{
			for (int j = 0; j < match.size(); j++)
			{
				if (str[i] == match[j])
				{
					num[i]++;
				}
			}
		}
		int sum = 0;
		for (auto c : num)
		{
			sum += c;
		}
		for (int i = 0; i < l1; i++)
		{
			cout << str[i] << " : " << num[i] << endl;
		}
		cout << "Invalid" << " : " << n - sum << endl;
	}
	return 0;
}

全部评论

相关推荐

10-25 22:20
门头沟学院 Java
代码飞升_不回私信人...:同学院本,个人亮点去了,打招呼里面的废话也去了,学院本就是路边一条,明天拉满然后该学还是学,小厂也行尽量先有一段实习。另外你的项目描述写的不好,具体列一下可被提问的点,然后量化一下指标或者收益吧
投了多少份简历才上岸
点赞 评论 收藏
分享
10-17 23:18
已编辑
西北农林科技大学 Web前端
独行m:给25可以试试,但他只能给12,那就是纯纯的事精
秋招,不懂就问
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务