B. Restore the Permutation by Merger(思维)Codeforces Round #656 (Div. 3)

原题链接:https://codeforces.com/problemset/problem/1385/B

题意:给定一个序列,输出没有重复的数字。

解题思路:我们可以利用一个辅助数组判断是否输出,若输出改标识位即可。注意,这里我们不能利用set容器,因为它会自动排序,我们是要保持原来的顺序输出。

AC代码:

/*
*邮箱:[email protected]
*blog:https://blog.csdn.net/hzf0701
*注:代码如有问题请私信我或在评论区留言,谢谢支持。
*/
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include//低版本G++编译器不支持,若使用这种G++编译器此段应注释掉
#include
#include
#include
#define scd(n) scanf("%d",&n)
#define scf(n) scanf("%f",&n)
#define scc(n) scanf("%c",&n)
#define scs(n) scanf("%s",n)
#define prd(n) printf("%d",n)
#define prf(n) printf("%f",n)
#define prc(n) printf("%c",n)
#define prs(n) printf("%s",n)
#define rep(i,a,n) for (int i=a;i<=n;i++)//i为循环变量,a为初始值,n为界限值,递增
#define per(i,a,n) for (int i=a;i>=n;i--)//i为循环变量, a为初始值,n为界限值,递减。
#define pb push_back
#define fi first
#define se second
#define mp make_pair
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<ll, ll>  pll;
typedef pair<int, int> pii;
const ll inf = 0x3f3f3f3f;//无穷大
const ll maxn = 1e2+2;//最大值。
//*******************************分割线,以上为代码自定义代码模板***************************************//

bool visited[maxn];
int n,t,temp;
int main(){
	//freopen("in.txt", "r", stdin);//提交的时候要注释掉
	ios::sync_with_stdio(false);//打消iostream中输入输出缓存,节省时间。
	cin.tie(0); cout.tie(0);//可以通过tie(0)(0表示NULL)来解除cin与cout的绑定,进一步加快执行效率。
	while(cin>>t){
		while(t--){
		cin>>n;
		memset(visited,false,sizeof(visited));
		rep(i,1,2*n){
			cin>>temp;
			if(!visited[temp]){
				cout<<temp<<" ";
				visited[temp]=true;
			}
		}
		cout<<endl;
		}
	}
	return 0;
}

你可能感兴趣的:(思维,codeforces,数学,算法,acm竞赛)