1 Star 0 Fork 0

hsmath/PAT advanced

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
1121.cpp 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
hsmath 提交于 2021-05-17 20:55 . 1121AC
/**
* @file 1121.cpp
* @author Shuang Hu <hsmath@ubuntu>
* @date Mon May 17 20:39:04 2021
*
* @brief PAT 1121
*
*
*/
#include<iostream>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<algorithm>
using namespace std;
int main(){
int pairs;
cin>>pairs;
map<string,string> couple;
for(int i=0;i<pairs;i++){
string s1,s2;
cin>>s1>>s2;
couple[s1]=s2;
couple[s2]=s1;
}
set<string> singledog;
map<string,bool> inparty;
int checknum;
cin>>checknum;
for(int i=0;i<checknum;i++){
string s;
cin>>s;
inparty[s]=true;
}
for(auto it=inparty.begin();it!=inparty.end();it++){
if(couple.count(it->first)==0){
singledog.insert(it->first);
}else if(inparty[couple[it->first]]==false){
singledog.insert(it->first);
}
}
cout<<singledog.size()<<endl;
for(auto it=singledog.begin();it!=singledog.end();it++){
if(it==singledog.begin()){
cout<<*it;
}else{
cout<<" "<<*it;
}
}
if(singledog.size()){
cout<<endl;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/hsmath/pat-advanced.git
git@gitee.com:hsmath/pat-advanced.git
hsmath
pat-advanced
PAT advanced
master

搜索帮助