[JLOI2011]不重复数字 题解

[JLOI2011]不重复数字 题解

题目地址:洛谷:【P4305】[JLOI2011]不重复数字 – 洛谷、BZOJ:Problem 2761. — [JLOI2011]不重复数字

题目描述

给出N个数,要求把其中重复的去掉,只保留第一次出现的数。
例如,给出的数为1 2 18 3 3 19 2 3 6 5 4,其中2和3有重复,去除后的结果为1 2 18 3 19 6 5 4。

输入输出格式

输入格式:
输入第一行为正整数T,表示有T组数据。
接下来每组数据包括两行,第一行为正整数N,表示有N个数。第二行为要去重的N个正整数。

输出格式:
对于每组数据,输出一行,为去重后剩下的数字,数字之间用一个空格隔开。

输入输出样例

输入样例#1:

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

输出样例#1:

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

说明

对于30%的数据,1 <= N <= 100,给出的数不大于100,均为非负整数;
对于50%的数据,1 <= N <= 10000,给出的数不大于10000,均为非负整数;
对于100%的数据,1 <= N <= 50000,给出的数在32位有符号整数范围内。

题解

一个set往上一套,美滋滋。
吐槽:1.我甚至不知道怎么给这道题加tag;2.BZOJ的PE太烦人啦!

代码

// Code by KSkun, 2018/3
#include <cstdio>

#include <set>

typedef long long LL;

inline char fgc() {
    static char buf[100000], *p1 = buf, *p2 = buf;
    return p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 100000, stdin), p1 == p2) ? EOF : *p1++;
}

inline LL readint() {
    register LL res = 0, neg = 1;
    char c = fgc();
    while(c < '0' || c > '9') {
        if(c == '-') neg = -1;
        c = fgc();
    }
    while(c >= '0' && c <= '9') {
        res = res * 10 + c - '0';
        c = fgc();
    }
    return res * neg;
}

int T, n, x;
std::set<int> num;

int main() {
    T = readint();
    while(T--) {
        num.clear();
        n = readint();
        x = readint();
        printf("%d", x);
        num.insert(x);
        for(int i = 2; i <= n; i++) {
            x = readint();
            if(!num.count(x)) printf(" %d", x), num.insert(x); 
        }
        puts("");
    }
    return 0;
}


发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据