码迷,mamicode.com
首页 > 其他好文 > 详细

STL应用——hdu1412(set)

时间:2017-08-10 10:31:27      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:水题   algorithm   style   hdu   font   bool   algo   符号   map   

  • 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)

标签:水题   algorithm   style   hdu   font   bool   algo   符号   map   

原文地址:http://www.cnblogs.com/xzxl/p/7337093.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!