結果

問題 No.2779 Don't make Pair
ユーザー Makuro_rinnMakuro_rinn
提出日時 2024-06-13 14:55:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 1,882 ms
コンパイル使用メモリ 175,076 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-06-13 14:55:43
合計ジャッジ時間 4,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 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,944 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 33 ms
6,944 KB
testcase_13 AC 35 ms
6,944 KB
testcase_14 AC 35 ms
6,944 KB
testcase_15 AC 55 ms
7,308 KB
testcase_16 AC 56 ms
7,424 KB
testcase_17 AC 54 ms
8,064 KB
testcase_18 AC 47 ms
7,416 KB
testcase_19 AC 48 ms
6,980 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 AC 73 ms
7,552 KB
testcase_22 AC 52 ms
6,944 KB
testcase_23 AC 113 ms
11,904 KB
testcase_24 AC 59 ms
6,940 KB
testcase_25 AC 59 ms
6,944 KB
testcase_26 AC 72 ms
8,320 KB
testcase_27 AC 76 ms
8,832 KB
testcase_28 AC 69 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


int main() {
 int N;
 cin >> N;
 vector<int> A(N);
 int k=0;
 set<int> pl;
 for(int i=0; i<N; i++) cin >> A.at(i);
 set<int> pri, post;
 int i=0;
 int pr=0;
 int po=0;
 while(pri.size()==i && i<N){
  pri.insert(A.at(i));
  i++;
 }
 pr=pri.size();
 i=0;
 while(post.size()==i && i<N){
  post.insert(A.at(N-1-i));
  i++;
 }
 po=N-post.size();
 if(pr==N){
  cout << (N-1) << endl;
  for(int j=1; j<N;j++) cout << j << " ";
  cout << endl;
 }
 else if(pr-po>=0){
  cout << (pr-po+1) << endl;
  for(int j=po; j<=pr;j++) cout << j << " ";
  cout << endl;
 }
 else cout << 0 << endl << endl;
}
0