博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj2761: [JLOI2011]不重复数字
阅读量:5008 次
发布时间:2019-06-12

本文共 1049 字,大约阅读时间需要 3 分钟。

2761: [JLOI2011]不重复数字

Time Limit: 10 Sec  Memory Limit: 128 MB

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

 

直接map去重就行了;

#include
#include
#include
#include
#include
using namespace std;int n,t,x;map
mp;int main(){ scanf("%d",&t); while(t--){ bool boo=false; mp.clear(); scanf("%d",&n); for(int i=1;i<=n;i++){ scanf("%d",&x); if(!mp[x]){ mp[x]=1; if(!boo){ boo=true; printf("%d",x); }else printf(" %d",x); } } printf("\n"); }}

 

 

转载于:https://www.cnblogs.com/WQHui/p/7681745.html

你可能感兴趣的文章
【剑指offer】面试题26:复杂链表的复制
查看>>
spark开发生成EXE
查看>>
Vue 全家桶介绍
查看>>
WPF Bitmap转Imagesource
查看>>
Java compiler level does not match the version of the installed Java project facet.解决方法
查看>>
笔记_小结
查看>>
Linux lsof命令 umount U盘
查看>>
自定义Font
查看>>
linux svn 服务端搭建
查看>>
maven用途、核心概念、用法、常用参数和命令、扩展
查看>>
linux时间同步ntp服务的安装与配置
查看>>
django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE的解决办法...
查看>>
网络编程-socket并发-粘包问题
查看>>
JSP 技术(二)--详解
查看>>
python 中安装pandas
查看>>
Hibernate 的<generator class="native"></generator>的不同属性含义
查看>>
linux修改root账户的用户名所得的教训
查看>>
【LeetCode】Flatten Binary Tree to Linked List
查看>>
读后感-浮生六纪
查看>>
执行指定路径的程序文件
查看>>