给出N个数,要求把其中重复的去掉,只保留第一次出现的数。
例如,给出的数为1 2 18 3 3 19 2 3 6 5 4,其中2和3有重复,去除后的结果为1 2 18 3 19 6 5 4。
标签:php 输入输出 重复 line ble 有符号 stream printf tput
http://www.lydsy.com/JudgeOnline/problem.php?id=2761
对于每组数据,输出一行,为去重后剩下的数字,数字之间用一个空格隔开。
对于30%的数据,1 <= N <= 100,给出的数不大于100,均为非负整数;
对于50%的数据,1 <= N <= 10000,给出的数不大于10000,均为非负整数;
对于100%的数据,1 <= N <= 50000,给出的数在32位有符号整数范围内。
提示:
由于数据量很大,使用C++的同学请使用scanf和printf来进行输入输出操作,以免浪费不必要的时间。
题解:掌握了 模板函数 count()和insert()的话, 这个题就好做多了---所以讲道理这是个低级算法题
#include<iostream> #include<cstdio> #include<string> #include<set> using namespace std; #define maxn 50000 int a[maxn]; set<int>s; int main(){ int T; cin >> T; while(T--){ int N, m = 0; cin >> N; s.clear(); for(int i=0; i<N; i++){ scanf("%d", &a[i]); if(s.count(a[i]) == 0){ if(i == 0) printf("%d", a[i]); else printf(" %d", a[i]); } s.insert(a[i]); } printf("\n"); } }
标签:php 输入输出 重复 line ble 有符号 stream printf tput
原文地址:http://www.cnblogs.com/ledoc/p/6201323.html