比赛 EYOI与SBOI开学欢乐赛6th 评测结果 AAWTTTTTTT
题目名称 充电宝 最终得分 20
用户昵称 康尚诚 运行时间 7.147 s
代码语言 C++ 内存使用 6.02 MiB
提交时间 2022-09-19 20:51:46
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int kind[200010];
bool type[200010],nochongfu=true;
int main()
{
    freopen("charger.in","r",stdin);
    freopen("charger.out","w",stdout);
    int n;cin>>n;
    int ans=0;
    for(int i=1;i<=n;i++)
    {
        cin>>kind[i];
        if(type[kind[i]])
        {
            nochongfu=false;
        }
        type[kind[i]]=1;
    }
    if(nochongfu)
    {
        cout<<n*(n-1)/2;
        return 0;
    }
    for(int i=2;i<=n;i++)
    {
        memset(type,0,sizeof(type));
        for(int j=i-1;j>=1;j--)
        {
//            cout<<j<<" "<<i<<endl; 
            if(kind[j]==kind[i]) break;
            if(type[kind[j]]) continue;
//            cout<<"ok"<<endl;
            ans++;
            type[kind[j]]=1;
        }
    }
    cout<<ans;
}