結果

問題 No.2779 Don't make Pair
ユーザー tobbietobbie
提出日時 2024-07-06 06:18:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 778 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 176,596 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-06 06:18:10
合計ジャッジ時間 4,505 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 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,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 33 ms
6,940 KB
testcase_11 AC 11 ms
6,940 KB
testcase_12 AC 46 ms
8,320 KB
testcase_13 AC 51 ms
8,832 KB
testcase_14 AC 31 ms
6,944 KB
testcase_15 AC 82 ms
11,776 KB
testcase_16 AC 93 ms
12,288 KB
testcase_17 AC 62 ms
9,216 KB
testcase_18 AC 42 ms
8,064 KB
testcase_19 AC 77 ms
10,496 KB
testcase_20 AC 29 ms
6,944 KB
testcase_21 AC 123 ms
14,464 KB
testcase_22 AC 117 ms
14,464 KB
testcase_23 AC 132 ms
14,464 KB
testcase_24 AC 123 ms
14,464 KB
testcase_25 AC 121 ms
14,464 KB
testcase_26 AC 123 ms
14,464 KB
testcase_27 AC 127 ms
14,336 KB
testcase_28 AC 127 ms
14,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define rep(i, n) for (int i = 0; i < (int)n; i++)

int main() {
  int N;
  cin >> N;
  map<int, vector<int>> mp;
  rep(i, N) {
    int Ai;
    cin >> Ai;
    mp[Ai].push_back(i);
  }
  int l = -1, r = N;
  for (auto it = mp.begin(); it != mp.end(); it++) {
    if ((it->second).size() > 2) {
      l = N, r = -1;
    }
    if ((it->second).size() == 2) {
      l = max((it->second)[0], l);
      r = min((it->second)[1], r);
    }
  }
  if (l > r) {
    cout << 0 << endl;
    cout << endl;
  } else if (l < 0) {
    cout << N-1 << endl;
    rep(i, N-1)
      cout << i+1 << " ";
    cout << endl;
  } else {
    cout << r - l << endl;
    for (int i = l; i < r; i++)
      cout << i+1 << " ";
    cout << endl;
  }
  return 0;
}
0