結果

問題 No.2779 Don't make Pair
ユーザー tnakao0123tnakao0123
提出日時 2024-06-08 13:20:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 69,136 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-08 13:20:30
合計ジャッジ時間 3,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 13 ms
6,944 KB
testcase_11 AC 6 ms
6,940 KB
testcase_12 AC 31 ms
8,320 KB
testcase_13 AC 33 ms
8,832 KB
testcase_14 AC 24 ms
6,940 KB
testcase_15 AC 64 ms
11,776 KB
testcase_16 AC 64 ms
12,288 KB
testcase_17 AC 41 ms
9,344 KB
testcase_18 AC 30 ms
7,936 KB
testcase_19 AC 47 ms
10,496 KB
testcase_20 AC 20 ms
6,940 KB
testcase_21 AC 82 ms
14,592 KB
testcase_22 AC 81 ms
14,592 KB
testcase_23 AC 93 ms
14,592 KB
testcase_24 AC 88 ms
14,592 KB
testcase_25 AC 83 ms
14,464 KB
testcase_26 AC 84 ms
14,592 KB
testcase_27 AC 77 ms
14,592 KB
testcase_28 AC 76 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2779.cc:  No.2779 Don't make Pair - yukicoder
 */

#include<cstdio>
#include<vector>
#include<map>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

typedef vector<int> vi;
typedef map<int,vi> mivi;

/* global variables */

int as[MAX_N];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);
  for (int i = 0; i < n; i++) scanf("%d", as + i);

  mivi avs;
  for (int i = 0; i < n; i++) avs[as[i]].push_back(i);

  int l = 0, r = n - 1;
  for (auto &[a, v]: avs) {
    if (v.size() > 2) { puts("0\n"); return 0; }
    if (v.size() == 2) {
      l = max(l, v[0]);
      r = min(r, v[1]);
    }
  }

  int k = max(0, r - l);
  printf("%d\n", k);
  for (int i = l; i < r; i++) printf("%d ", i + 1);
  putchar('\n');

  return 0;
}
0