博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
1121. Damn Single (25) 格式 map
阅读量:6742 次
发布时间:2019-06-25

本文共 666 字,大约阅读时间需要 2 分钟。

#include 
#include
#include
#include
using namespace std;int main(){ int n, m; string a, b; cin >> n; vector
ans, t; map
ma; map
mb; for (int i = 0; i < n; i++) { cin >> a >> b; ma[a] = b; ma[b] = a; } cin >> m; for (int i = 0; i < m; i++) { cin >> a; t.push_back(a); mb[a] = 1; } for (int i = 0; i < m; i++) { if(!mb[ma[t[i]]]) ans.push_back(t[i]); //ma[t[i]] t[i]的配偶 mb判断其是否出现在聚会中 } sort(ans.begin(), ans.end()); cout << ans.size() << endl; for (int i = 0; i < ans.size(); i++) { if(i != 0) cout << ' '; cout << ans[i]; } //呵呵哒 if (ans.size()) { cout << endl; } return 0;}

转载地址:http://ofrqo.baihongyu.com/

你可能感兴趣的文章
深入理解Oracle Universal Installer (OUI) Text
查看>>
从性能的角度谈SQL Server聚集索引键的选择
查看>>
tomcat站点配置
查看>>
Java Swing 探索(一)LayoutManager
查看>>
8月7号晚7点Autodesk北京办公室,我们来聊聊HTML5/ WebGL 3D 模型浏览技术
查看>>
[Backbone]2. More detail in Models
查看>>
Permutations leetcode java
查看>>
JAVA中关于锁机制
查看>>
用boost共享内存实现进程通信的例子
查看>>
【转】搜狗开源内部项目管理平台Cynthia意欲何为
查看>>
Hive基础之Hive表常用操作
查看>>
[C#] 常用工具类——直接在浏览器输出数据
查看>>
原码 & 反码 & 补码 & 详解
查看>>
Linq to Sql : 三种事务处理方式
查看>>
无线点餐系统应用源码(转)
查看>>
Oracle表与索引的分析及索引重建
查看>>
POJ3169:Layout(差分约束)
查看>>
如何打一手好Log(转)
查看>>
Visio Premium 2010密钥+破解激活方法
查看>>
js Range
查看>>