博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 2034 人见人爱A-B【STL/set】
阅读量:6370 次
发布时间:2019-06-23

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

人见人爱A-B

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 95146    Accepted Submission(s): 26564

Problem Description
参加过上个月月赛的同学一定还记得其中的一个最简单的题目,就是{A}+{B},那个题目求的是两个集合的并集,今天我们这个A-B求的是两个集合的差,就是做集合的减法运算。(当然,大家都知道集合的定义,就是同一个集合中不会有两个相同的元素,这里还是提醒大家一下)
呵呵,很简单吧?
 

 

Input
每组输入数据占1行,每行数据的开始是2个整数n(0<=n<=100)和m(0<=m<=100),分别表示集合A和集合B的元素个数,然后紧跟着n+m个元素,前面n个元素属于集合A,其余的属于集合B. 每个元素为不超出int范围的整数,元素之间有一个空格隔开.
如果n=0并且m=0表示输入的结束,不做处理。
 

 

Output
针对每组数据输出一行数据,表示A-B的结果,如果结果为空集合,则输出“NULL”,否则从小到大输出结果,为了简化问题,每个元素后面跟一个空格.
 

 

Sample Input
3 3 1 2 3 1 4 7 3 7 2 5 8 2 3 4 5 6 7 8 0 0
 

 

Sample Output
2 3 NULL
 

 

Author
lcy
 

 

Source
【代码】:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;#define long long llconst double PI = acos(-1.0);const double eps = 1e-6;const int inf = 0x3f3f3f3f;const int N = 1005;int n, m, tot;int a[N];int t;//34 45 56//57 23 34// 9 30(80/60=1int main(){ int b; set
s; while(cin>>n>>m) { s.clear(); //!!! if(!n && !m) break; for(int i=1; i<=n; i++) { cin>>a[i]; s.insert(a[i]); } for(int i=1; i<=m; i++) { cin>>b; if(s.find(b) != s.end()) ///!!! { s.erase(b); } } if(s.size()==0) cout<<"NULL"; else { set
::iterator it = s.begin(); for( ; it!=s.end(); it++){ //if(it!=s.begin()) cout<<" "; cout<<*it<<" "; ///!!! } } cout<
View Code

 

转载于:https://www.cnblogs.com/Roni-i/p/8717165.html

你可能感兴趣的文章
校园网IPV6设置与应用
查看>>
git Your branch is ahead of ... 解决办法
查看>>
Centos 7 JDK、Tomcat9 安装并配置
查看>>
js中void作用
查看>>
MySQL索引背后的数据结构及算法原理
查看>>
PHP FPM源代码反刍品味之六:IO事件机制的封装.
查看>>
老司机谈秋招详细攻略——从准备到面试
查看>>
Python程序员的30个常见错误
查看>>
Terraform,自动化配置与编排必备利器
查看>>
oracle删除重复记录的方法
查看>>
程序员如何打造属于自己的云笔记服务
查看>>
为什么要是用R语言?
查看>>
linux复盘:expect构建文件分发系统
查看>>
如何使用IntelliJ IDEA中的.ignore插件方便的添加忽略文件
查看>>
计算图像直方图(OpenCV内置实现)
查看>>
'SHOW_PAGE_TRACE' =>ture;
查看>>
kazoo
查看>>
如何轻松快速学习JavaScript 呢?
查看>>
webSocket原理
查看>>
help.hybris.com和help.sap.com网站的搜索实现
查看>>