标签:问题 turn mes 存在 减法 span ase else it!
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
代码(set)
1 #include<iostream> 2 #include<cstdio> 3 #include<set> 4 #include<vector> 5 using namespace std; 6 set<int>s; 7 int main(){ 8 int n,m; 9 while(scanf("%d %d",&n,&m)!=EOF){ 10 if(n==0&&m==0) break; 11 int num,num1; 12 for(int i=0;i<n;i++){ 13 scanf("%d",&num); 14 s.insert(num); 15 } 16 for(int i=0;i<m;i++){ 17 scanf("%d",&num1); 18 if(s.count(num1)) s.erase(num1);//若存在num1,则删除 19 } 20 if(s.empty()==1) printf("NULL\n"); 21 else{ 22 set<int>::iterator it; 23 for(it=s.begin();it!=s.end();it++){ 24 printf("%d ",*it); 25 } 26 printf("\n"); 27 } 28 s.clear(); //重要!!! 29 } 30 return 0; 31 }
标签:问题 turn mes 存在 减法 span ase else it!
原文地址:https://www.cnblogs.com/-happy-/p/12257556.html