BZOJ2761: [JLOI2011]不重复数字(map)
发布日期:2021-09-11 05:52:35 浏览次数:32 分类:技术文章

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

Time Limit: 10 Sec  Memory Limit: 128 MB
Submit: 6356  Solved: 2407
[ ][ ][ ]

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

 

看到这题比较水,然后就来切了。

感谢这道水题,让我知道了unique只能去重相邻元素

还让我知道了unordered_map怎么写。。

 

 

/**************************************************************    Problem: 2761    User: attack204    Language: C++    Result: Accepted    Time:300 ms    Memory:21856 kb****************************************************************/ // luogu-judger-enable-o2#include
#include
#include
#include
#include
#define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1<<22, stdin), p1 == p2) ? EOF : *p1++)using namespace __gnu_pbds;const int MAXN = 50001 + 1;char buf[(1 << 22)], *p1 = buf, *p2 = buf;using namespace std;inline int read() { char c = getchar(); int x = 0, f = 1; while(c < '0' || c > '9') {
if(c == '-') f = -1; c = getchar();} while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar(); return x * f;}char obuf[1<<24], *O=obuf;void print(int x) { if(x > 9) print(x / 10); *O++= x % 10 + '0';}int a[MAXN];cc_hash_table
mp;main() { int QwQ = read(); while(QwQ--) { mp.clear(); int N = read(); for(int i = 1; i <= N; i++) { int x = read(); if(!mp[x]) { mp[x] = 1; if(x < 0) *O++ = '-', x = -x; print(x); *O++ = ' '; } } *O++ = '\n'; } fwrite(obuf, O-obuf, 1 , stdout); return 0;}

 

转载地址:https://blog.csdn.net/weixin_34406061/article/details/85996116 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:Python基础知识汇总
下一篇:Redis DEL 命令 - 该命令用于在 key 存在是删除 key。

发表评论

最新留言

路过,博主的博客真漂亮。。
[***.116.15.85]2024年09月03日 11时13分18秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章