結果

問題 No.2126 MEX Game
ユーザー SSRSSSRS
提出日時 2022-11-18 21:42:52
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 1,444 ms
コンパイル使用メモリ 172,412 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-20 02:05:53
合計ジャッジ時間 2,641 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> cnt(N + 2, 0);
  for (int i = 0; i < N; i++){
    if (A[i] < N + 2){
      cnt[A[i]]++;
    }
  }
  vector<pair<int, int>> P;
  for (int i = 0; i < N + 2; i++){
    if (cnt[i] < 2){
      P.push_back(make_pair(i, cnt[i]));
    }
  }
  if (P[0].second == 0){
    cout << P[0].first << endl;
  } else if (P[1].second == 0){
    if (N == P[1].first * 2 - 1){
      cout << P[1].first - 1 << endl;
    } else {
      cout << P[1].first << endl;
    }
  } else {
    cout << P[1].first << endl;
  }
}
0