結果

問題 No.2779 Don't make Pair
ユーザー KeiKei
提出日時 2024-06-07 22:46:30
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 4,994 ms
コンパイル使用メモリ 282,588 KB
実行使用メモリ 12,868 KB
最終ジャッジ日時 2024-06-07 22:46:39
合計ジャッジ時間 7,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 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,940 KB
testcase_11 AC 12 ms
6,940 KB
testcase_12 AC 64 ms
7,680 KB
testcase_13 AC 44 ms
6,944 KB
testcase_14 AC 48 ms
6,944 KB
testcase_15 AC 109 ms
9,476 KB
testcase_16 AC 94 ms
8,832 KB
testcase_17 AC 84 ms
8,320 KB
testcase_18 AC 69 ms
7,544 KB
testcase_19 AC 98 ms
9,132 KB
testcase_20 AC 47 ms
6,940 KB
testcase_21 AC 136 ms
10,880 KB
testcase_22 AC 115 ms
9,984 KB
testcase_23 AC 183 ms
12,868 KB
testcase_24 AC 106 ms
9,728 KB
testcase_25 AC 118 ms
10,000 KB
testcase_26 AC 155 ms
11,700 KB
testcase_27 AC 151 ms
11,392 KB
testcase_28 AC 152 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

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];    
  } 
  map<int, int> mR;
  for (int i = 0; i < N; i++) {
    mR[A[i]]++;
  }
  int cnt = 0;
  for (auto w : mR) {
    cnt += w.second - 1;
  }
  map<int, int> mL;
  int ans = 0;
  vector<int> B;
  for (int i = 0; i < N - 1; i++) {
    if (mL.count(A[i])) break;
    mL[A[i]]++;
    mR[A[i]]--;
    if (mR[A[i]]) cnt--;
    if (cnt == 0) {
      B.push_back(i + 1);
      ans++;
    }
  }
  cout << ans << endl;
  for (int i = 0; i < ans; i++) {
    cout << B[i] << ' ';
  }
  cout << endl;
}
0