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

【bzoj2761】[JLOI2011]不重复数字

时间:2016-07-06 20:21:24      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:

水题

set判重即可

oj上没有忽略行末空格

 

#include<algorithm>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<set>
using namespace std;

typedef long long LL;

set<LL>S;

LL T;
LL n;
LL x;

int main()
{
	scanf("%lld",&T);
	while (T--)
	{
		S.clear();
		scanf("%lld",&n);
		scanf("%lld",&x);
		printf("%lld",x);
		S.insert(x);
		for (LL i=2;i<=n;i++)
		{			
			scanf("%lld",&x);
			if (S.count(x)==0)
			{
				printf(" %lld",x);
				S.insert(x);
			}
		}
		printf("\n");
	}
	return 0;
}

  

【bzoj2761】[JLOI2011]不重复数字

标签:

原文地址:http://www.cnblogs.com/yangjiyuan/p/5647932.html

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