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

bzoj2761: [JLOI2011]不重复数字

时间:2017-11-26 17:47:32      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:stl   ring   ace   bzoj   turn   map   size   jloi2011   col   

STL大法好。。。。

#include<cstdio>
#include<cstring>
#include<map>
using namespace std;
typedef long long LL;
int a[51000];
map<int,int>mp;
int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        int n;
        scanf("%d",&n);
        mp.clear();bool bk=false;
        for(int i=1;i<=n;i++)
        {
            int x;
            scanf("%d",&x);
            if(mp[x]==0)
            {
                mp[x]=1;
                if(bk!=false)printf(" ");
                printf("%d",x);
                bk=true;
            }
        }
        printf("\n");
    }
    return 0;
}

 

bzoj2761: [JLOI2011]不重复数字

标签:stl   ring   ace   bzoj   turn   map   size   jloi2011   col   

原文地址:http://www.cnblogs.com/AKCqhzdy/p/7899301.html

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