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

B. Restore the Permutation by Merger Codeforces Round #656 (Div. 3)_第1张图片
思路:水题,只要遍历一遍。判断这个数有么有输出过,如果输出过就不输出。

#include 
using namespace std;
int a[110]; int v[55];

int main()
{
    int t; cin>>t;
    while(t--){
        int n; cin>>n;
        memset(v,0,sizeof(v));
        for(int i=0;i<n*2;i++)
            cin>>a[i];
        for(int i=0;i<n*2;i++){
            if(v[a[i]]==0){
                cout<<a[i]<<" "; v[a[i]] = 1;
            }
            else continue;
        }
        cout<<endl;
    }
    return 0;
}

你可能感兴趣的:(cf)