Sicily-A-B

2018-06-17 23:22:37来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

简要思路:就是让你做集合的运算,输出结果中的元素。当时用了数组,结果超时了,最后在室友的提醒下用了set,简直不要太好用!

输出有点坑爹,就是元素和元素间要有空格,最后一个元素没有空格。

还要考虑当结果是空集的特殊情况。

 1 // Problem#: 19572
 2 // Submission#: 5037010
 3 // The source code is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
 4 // URI: http://creativecommons.org/licenses/by-nc-sa/3.0/
 5 // All Copyright reserved by Informatic Lab of Sun Yat-sen University
 6 #include<iostream>
 7 #include<map>
 8 #include<string>
 9 #include<cstring>
10 #include<set>
11 using namespace std;
12 int main() {
13     int T;
14     cin >> T;
15     while(T--) {
16         set<int> jihe; 
17         int m;
18         cin >> m;
19         while(m--){
20             int k;
21             cin >> k;
22             jihe.insert(k);
23         }
24         int n;
25         cin >> n;
26         while(n--) {
27             int j;
28             cin >> j;
29             if (jihe.count(j)!=0) {
30                 jihe.erase(j);
31             }
32         }
33         if (jihe.size() == 0) {
34             cout << endl;
35             continue;
36         }
37         set<int>::iterator it;
38         for (it = jihe.begin();it!=jihe.end();++it) {
39             if (it == jihe.begin()) {
40                 cout << *it;
41             } else {
42                 cout<< " " << *it;
43             }
44         }
45         cout << endl;
46         
47     }
48 }                 

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Qt入门之基础篇 ( 二 ) :Qt项目建立、编译、运行和发布过程解析

下一篇:Qt中的坐标系统