STL应用——hdu1412(set)

Posted GGBeng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL应用——hdu1412(set)相关的知识,希望对你有一定的参考价值。

  • set函数的应用

  • 超级水题

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include <list>
#include <map>
#include <stack>
#include <queue>
#include <map>
using namespace std;

int n,m;
int a[10005],b[10005];


int main()
{
	while(~scanf("%d%d",&n,&m)){
		set<int> ans;
		int k=0;
		for(int i=0;i<n;i++){
			scanf("%d",&a[i]);
			ans.insert(a[i]);			//set没有定义[]符号 
		}
		for(int j=0;j<m;j++){
			scanf("%d",&b[j]);
			ans.insert(b[j]);
		}
		bool flag = 0;				//为输出符合题意设置的 
		set<int>::iterator it;				//set的迭代器 
		for(it = ans.begin();it != ans.end();it++){
			if(flag==1)
				printf(" ");
			flag = 1;
			cout<<*it;
		}
		printf("\n");
	}
	return 0;
}

 

以上是关于STL应用——hdu1412(set)的主要内容,如果未能解决你的问题,请参考以下文章

hdu 4585 Shaolin两种方法(暴力和STL map set)

HDU1412 {A} + {B}

{A} + {B} HDU - 1412

HDU 4585 Shaolin (set的应用)

hdu2648 STL map的简单应用

hdu1276士兵队列训练问题[简单STL list]