BZOJ2761: [JLOI2011]不重复数字(map)
2018-06-17 20:28:59来源:未知 阅读 ()
Submit: 6356 Solved: 2407
[Submit][Status][Discuss]
Description
Input
Output
Sample Input
11
1 2 18 3 3 19 2 3 6 5 4
6
1 2 3 4 5 6
Sample Output
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<cstdio> #include<algorithm> #include<map> #include<ext/pb_ds/assoc_container.hpp> #include<ext/pb_ds/hash_policy.hpp> #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<int,bool>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; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- STL之set 2020-04-28
- 无重复字符的最长子串 2020-04-08
- 剑指offer50:数组中重复的数字 2019-08-29
- 剑指offer54:字符流中第一个不重复的字符 2019-08-29
- #leetcode刷题之路3-无重复字符的最长子串 2019-02-25
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash