HDU 1412({A} + {B})
程序员文章站
2022-03-23 13:28:00
...
基础题,使用 set 数据结构即可。
#include <iostream>
#include <set>
using namespace std;
set<int> s;
int main()
{
int n, m;
while (cin >> n >> m)
{
s.clear();
int num;
for (int i = 0; i < n + m; i++)
{
cin >> num;
s.insert(num);
}
int total = 0;
set<int>::iterator it;
for (it = s.begin(); it != s.end(); it++)
{
cout << *it << " ";
++total;
if (total + 1 == s.size())
{
cout << *(++it) << endl;
break;
}
}
}
return 0;
}
继续加油。
上一篇: ubuntu的骚操作
下一篇: 适合小白学习的前端页面知识(值得一看)
推荐阅读
-
php数组相加 array(“a”)+array(“b”)结果还是array(“a”)_PHP
-
商派 ONex_b2b2c 框架开发手札(一)- 概述
-
NE76003单片机调试DS18B20 步骤
-
php从A数据库中多张表读数据,插入到B数据库B表里面
-
【HDUOJ】第1002题 A + B Problem II 纯C语言解法
-
Hdu多校8-1009 hdu-6863 Isomorphic Strings
-
哈哈哈HDU1009+HDU2037 简单贪心法清晰讲解
-
hdu4313 Matrix(kruskal思想+并查集)
-
HDU 多校第五场 Tetrahedron(1001),Paperfolding(1009)
-
3年2B产品运营后总结的8条获客方法