1. 程式人生 > >bzoj2761: [JLOI2011]不重復數字

bzoj2761: [JLOI2011]不重復數字

turn ron scan define 出現 put urn getch amp

2761: [JLOI2011]不重復數字

Description

給出N個數,要求把其中重復的去掉,只保留第一次出現的數。 例如,給出的數為1 2 18 3 3 19 2 3 6 5 4,其中2和3有重復,去除後的結果為1 2 18 3 19 6 5 4。

Input

輸入第一行為正整數T,表示有T組數據。 接下來每組數據包括兩行,第一行為正整數N,表示有N個數。第二行為要去重的N個正整數。

Output

對於每組數據,輸出一行,為去重後剩下的數字,數字之間用一個空格隔開。

Sample Input

2
11
1 2 18 3 3 19 2 3 6 5 4
6
1 2 3 4 5 6

Sample Output

1 2 18 3 19 6 5 4
1 2 3 4 5 6

HINT

對於30%的數據,1 <= N <= 100,給出的數不大於100,均為非負整數;


對於50%的數據,1 <= N <= 10000,給出的數不大於10000,均為非負整數;


對於100%的數據,1 <= N <= 50000,給出的數在32位有符號整數範圍內。


提示:


由於數據量很大,使用C++的同學請使用scanf和printf來進行輸入輸出操作,以免浪費不必要的時間。


#include<cstdio>
#include
<cstring> #include<cstdlib> #include<cmath> #include<algorithm> #include<map> #define qread(x)x=read(); using namespace std; typedef long long LL; inline LL read() { LL f=1,x=0;char ch; while(ch<0 || ch>9){if(ch==-)f=-1;ch=getchar();} while
(ch>=0 && ch<=9){x=x*10+ch-0;ch=getchar();} return f*x; } LL T,n; LL a[51000]; map<int ,int >st; int main() { qread(T); while(T--) { qread(n);st.clear();bool bk=false; for(int i=1;i<=n;i++) { LL x; qread(x); if(st[x]==0) { if(bk!=false)printf(" "); printf("%lld",x); bk=true; } st[x]=1; } printf("\n"); } return 0; }

bzoj2761: [JLOI2011]不重復數字