結果

問題 No.2779 Don't make Pair
ユーザー a01sa01toa01sa01to
提出日時 2024-06-27 00:26:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 209 ms / 2,000 ms
コード長 856 bytes
コンパイル時間 3,417 ms
コンパイル使用メモリ 257,100 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-06-27 00:26:58
合計ジャッジ時間 8,259 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 34 ms
6,944 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 80 ms
6,940 KB
testcase_13 AC 86 ms
6,944 KB
testcase_14 AC 52 ms
6,944 KB
testcase_15 AC 141 ms
7,296 KB
testcase_16 AC 154 ms
7,424 KB
testcase_17 AC 98 ms
6,400 KB
testcase_18 AC 76 ms
5,760 KB
testcase_19 AC 113 ms
6,628 KB
testcase_20 AC 51 ms
5,376 KB
testcase_21 AC 200 ms
8,320 KB
testcase_22 AC 194 ms
8,320 KB
testcase_23 AC 209 ms
8,832 KB
testcase_24 AC 200 ms
8,320 KB
testcase_25 AC 188 ms
8,448 KB
testcase_26 AC 193 ms
8,448 KB
testcase_27 AC 197 ms
8,320 KB
testcase_28 AC 194 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  int n;
  cin >> n;
  vector<int> a(n);
  rep(i, n) cin >> a[i];
  map<int, int> left, right;
  rep(i, n) right[a[i]]++;
  int left_cnt = 0, right_cnt = 0;
  for (auto [k, v] : right) {
    if (v > 1) right_cnt++;
  }
  vector<int> ans(0);
  rep(i, n - 1) {
    int x = a[i];
    right[x]--;
    if (right[x] == 1) right_cnt--;
    if (right[x] == 0) right.erase(x);
    left[x]++;
    if (left[x] == 2) left_cnt++;
    if (left_cnt == 0 && right_cnt == 0) ans.push_back(i + 1);
  }
  cout << ans.size() << endl;
  for (int x : ans) cout << x << ' ';
  cout << endl;
  return 0;
}
0