bzoj2761: [JLOI2011]不重复数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj2761: [JLOI2011]不重复数字相关的知识,希望对你有一定的参考价值。
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]不重复数字的主要内容,如果未能解决你的问题,请参考以下文章