1065 单身狗 (25 分)(map+set+vector)
Posted 桃陉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1065 单身狗 (25 分)(map+set+vector)相关的知识,希望对你有一定的参考价值。
一.题目
二.分析
在这里,我将完整的代码分为四个部分:
∙ \\bullet ∙ 第一部分:使用 u n o r d e r e d _ m a p < i n t , i n t > m p unordered \\_map<int,int>mp unordered_map<int,int>mp 存储各对夫妻的 I D ID ID,使用键值对使其一一对应。
∙ \\bullet ∙ 第二部分:使用 s e t set set 存储接下来输入的客人 I D ID ID,方便搜索信息。
∙ \\bullet ∙ 第三部分:使用 v e c t o r vector vector 存储落单客人的 I D ID ID。首先如果客人 I D ID ID 没有出现在 m p mp mp 中,那么他一定是落单的;然后如果他出现在 m p mp mp 中,但是他的配偶没有来到现场(不在 s e t set set 中),那么也是落单的。
∙ \\bullet ∙ 第四部分:将数组排序并输出结果。注意输出结果一定是五位数。
三.代码
#include<iostream>
#include<vector>
#include<unordered_map>
#include<set>
#include<algorithm>
using namespace std;
int main()
{
int N=0,M=0;
cin>>N;
//加入map
unordered_map<int,int>mp;
for(int i=0;i<N;i++)
{
int a=0,b=0;
cin>>a>>b;
mp[a]=b;
mp[b]=a;
}
//加入M个客人ID
cin>>M;
set<int>s;
for(int i=0;i<M;i++)
{
int a=0;
cin>>a;
s.insert(a);
}
//找出落单客人
vector<int>res;
for(auto &a:s)
{
if(!mp.count(a))
{
res.emplace_back(a);
}else
{
if(s.find(mp[a])!=s.end()) continue;
else res.emplace_back(a);
}
}
//排序后输出
sort(res.begin(),res.end());
cout<<res.size()<<endl;
for(int i=0;i<res.size();i++)
{
printf("%05d", res[i]);
if(i!=res.size()-1) cout<<" ";
}
return 0;
}
四.结果
以上是关于1065 单身狗 (25 分)(map+set+vector)的主要内容,如果未能解决你的问题,请参考以下文章