欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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;
}

继续加油。

相关标签: HDU HDU