zoukankan      html  css  js  c++  java
  • BZOJ 2761 不重复数字 (Hash)

    题解:直接使用STL中的hash去重即可

    #include <cstdio>
    #include <map>
    using namespace std;
    int ans[50010];
    int main(){
        int T,n,tmp;
        scanf("%d",&T);
        while(T--){
            int cnt=0; map<int,int>m;
            scanf("%d",&n);
            for(int i=0;i<n;i++){
                scanf("%d",&tmp);
                if(!m[tmp])ans[cnt++]=tmp,m[tmp]=1;
            }
            for(int i=0;i<cnt-1;i++)printf("%d ",ans[i]);
            printf("%d
    ",ans[cnt-1]);
        }
        return 0;
    }
    
  • 相关阅读:
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
    iOS
  • 原文地址:https://www.cnblogs.com/forever97/p/bzoj2761.html
Copyright © 2011-2022 走看看