[BZOJ2761] 不重复数字

史上第一乱水题……


2761: [JLOI2011]不重复数字

Time Limit: 10 Sec  Memory Limit: 128 MB
Submit: 3346  Solved: 1231
[ Submit][ Status][ Discuss]

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来进行输入输出操作,以免浪费不必要的时间。


Source


#include "stdio.h"
#include "stdlib.h"
#include "iostream"
#include "algorithm"
using namespace std;
inline void read(int & v){
       char ch;int poi=1;
       while (ch=getchar(),ch!='-'&&(ch>'9'||ch<'0'));
       if(ch=='-') poi=-1,ch=getchar();
       v=0; while (ch<='9'&&ch>='0') v=v*10+ch-'0',ch=getchar();
       v*=poi;
}
const int N=50005;
struct Node { int x,y;}s[N];
inline bool cmp0(const Node a,const Node b){ return a.x==b.x?a.y<b.y:a.x<b.x;}
inline bool cmp1(const Node a,const Node b){ return a.y<b.y;}
void work(){
     int n,i,j;read(n);
     for (i=1;i<=n;i++) read(s[i].x),s[i].y=i;
     sort(s+1,s+n+1,cmp0);
     for (i=2,j=2;i<=n;i++) if(s[i].x!=s[i-1].x) s[j++]=s[i];
     sort(s+1,s+j,cmp1);
     for (i=1;i<j-1;i++) printf("%d ",s[i].x);
     printf("%d\n",s[j-1].x);
}
int main(){
//    freopen("num.in","r",stdin);
//    freopen("num.out","w",stdout);
    int T; read(T);
    while (T--) work();
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值