Sicily-A-B
2018-06-17 23:22:37来源:未知 阅读 ()
简要思路:就是让你做集合的运算,输出结果中的元素。当时用了数组,结果超时了,最后在室友的提醒下用了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
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Unsolved --> Solved OJ思路题解 2020-05-30
- 结题报告 2020-02-03
- 结题报告 2020-01-30
- poj-1753题题解思路 2020-01-26
- 结题报告 2020-01-12
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash