結果

問題 No.2779 Don't make Pair
ユーザー tobbietobbie
提出日時 2024-07-06 05:56:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 755 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 174,556 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-07-06 05:56:42
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 38 ms
8,448 KB
testcase_13 AC 41 ms
8,704 KB
testcase_14 WA -
testcase_15 AC 62 ms
11,776 KB
testcase_16 WA -
testcase_17 AC 46 ms
9,344 KB
testcase_18 WA -
testcase_19 AC 53 ms
10,368 KB
testcase_20 AC 24 ms
6,784 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 90 ms
14,336 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 107 ms
14,464 KB
testcase_27 AC 84 ms
14,336 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
  } else if (l < 0) {
    cout << N << endl;
    rep(i, N)
      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