Submission #64067057


Source Code Expand

Copy
#include<atcoder/all>
#include<bits/stdc++.h>
template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define reps(i,a,n) for(int i=(a);i<(int)(n);++i)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define all(box) (box).begin(), (box).end()
using namespace std;
using namespace atcoder;
typedef long long ll;
const ll INF=1LL<<60;
using P=pair<int,int>;
int dx1[]={1,-1,0,0};
int dy1[]={0,0,1,-1};
int dx2[]={0,0,1,-1,1,-1,1,-1};
int dy2[]={1,-1,0,0,1,-1,-1,1};
//10->n
/*
 
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
#include<atcoder/all>
#include<bits/stdc++.h>

template<class T> inline bool chmin(T& a, T b) {if (a > b) {a = b;return true;}return false;}
template<class T> inline bool chmax(T& a, T b) {if (a < b) {a = b;return true;}return false;}
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define reps(i,a,n) for(int i=(a);i<(int)(n);++i)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
#define all(box) (box).begin(), (box).end()
using namespace std;
using namespace atcoder;
typedef long long ll;
const ll INF=1LL<<60;
using P=pair<int,int>;
int dx1[]={1,-1,0,0};
int dy1[]={0,0,1,-1};
int dx2[]={0,0,1,-1,1,-1,1,-1};
int dy2[]={1,-1,0,0,1,-1,-1,1};

//10->n進数へ変換
/*
    vector<int> ans;
    while(k){
        ans.push_back(k%2);
        k/=2;
    }
*/
//n進数->10進数へ変換
/*
ll f(string s,ll k){
    ll ans=0;
    for(char x:s){
        ans *= k;
        ans += x - '0';
    }
    return ans;
}
*/

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    map<int,int> mp;
    int n;
    cin>>n;
    vector<int> a(n);
    rep(i,n){
        cin>>a[i];
        mp[a[i]]++;
    }
    set<int> st;
    for(auto ite=mp.begin();ite!=mp.end();ite++){
        if(ite->second==1) st.insert(ite->first);
    }
    if(st.empty()){
        cout<<-1<<endl;
        return 0;
    }
    int num=-1,ans=-1;
    rep(i,n){
        if(st.find(a[i])!=st.end()){
            if(num<a[i]){
                num=a[i];
                ans=i+1;
            }
        }
    }
    cout<<ans<<endl;

    return 0;
}

Submission Info

Submission Time
Task C - Uniqueness
User rihojianbu
Language C++ 20 (gcc 12.2)
Score 300
Code Size 1591 Byte
Status AC
Exec Time 423 ms
Memory 32376 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 2
AC × 28
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
All hand_01.txt, hand_02.txt, hand_03.txt, random_01.txt, random_02.txt, random_03.txt, random_04.txt, random_05.txt, random_06.txt, random_07.txt, random_08.txt, random_09.txt, random_10.txt, random_11.txt, random_12.txt, random_13.txt, random_14.txt, random_15.txt, random_16.txt, random_17.txt, random_18.txt, random_19.txt, random_20.txt, random_21.txt, random_22.txt, random_23.txt, sample_01.txt, sample_02.txt
Case Name Status Exec Time Memory
hand_01.txt AC 1 ms 3600 KB
hand_02.txt AC 1 ms 3516 KB
hand_03.txt AC 1 ms 3600 KB
random_01.txt AC 423 ms 32376 KB
random_02.txt AC 111 ms 14644 KB
random_03.txt AC 387 ms 31404 KB
random_04.txt AC 260 ms 24008 KB
random_05.txt AC 393 ms 32160 KB
random_06.txt AC 95 ms 8864 KB
random_07.txt AC 60 ms 7700 KB
random_08.txt AC 64 ms 7540 KB
random_09.txt AC 17 ms 4448 KB
random_10.txt AC 55 ms 11276 KB
random_11.txt AC 56 ms 11240 KB
random_12.txt AC 57 ms 11216 KB
random_13.txt AC 57 ms 11268 KB
random_14.txt AC 59 ms 11172 KB
random_15.txt AC 60 ms 11216 KB
random_16.txt AC 41 ms 7384 KB
random_17.txt AC 6 ms 4372 KB
random_18.txt AC 137 ms 13104 KB
random_19.txt AC 90 ms 10960 KB
random_20.txt AC 62 ms 8960 KB
random_21.txt AC 2 ms 3716 KB
random_22.txt AC 93 ms 10956 KB
random_23.txt AC 32 ms 6784 KB
sample_01.txt AC 1 ms 3452 KB
sample_02.txt AC 1 ms 3396 KB


2025-04-03 (Thu)
21:12:18 +00:00