PAT (Advanced Level) 1041. Be Unique (20)

Posted Fighting Heart

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT (Advanced Level) 1041. Be Unique (20)相关的知识,希望对你有一定的参考价值。

简单题。

#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<map>
#include<queue>
#include<stack>
#include<string>
#include<algorithm>
using namespace std;

int n;
int a[100000+10];
int f[10000+10];

int main()
{
    memset(f,0,sizeof f);
    scanf("%d",&n);
    for(int i=1;i<=n;i++) scanf("%d",&a[i]);
    for(int i=1;i<=n;i++) f[a[i]]++;
    int fail=1;
    for(int i=1;i<=n;i++)
    {
        if(f[a[i]]==1)
        {
            fail=0;
            printf("%d\n",a[i]);
            break;
        }
    }
    if(fail==1) printf("None\n");
    return 0;
}

 

以上是关于PAT (Advanced Level) 1041. Be Unique (20)的主要内容,如果未能解决你的问题,请参考以下文章

PAT Advanced 1041 Be Unique (20 分)

PAT Advanced 1041 Be Unique (20) [Hash散列]

PAT (Basic Level) Practice (中文)1041 考试座位号 (15 分)

PAT (Advanced Level) 1025. PAT Ranking (25)

PAT Advanced Level 1044

PAT Advanced Level 1043