結果

問題 No.2740 Old Maid
ユーザー Nzt3Nzt3
提出日時 2024-05-02 17:34:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 205,288 KB
実行使用メモリ 8,476 KB
最終ジャッジ日時 2024-11-23 09:55:50
合計ジャッジ時間 10,551 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
8,348 KB
testcase_01 AC 81 ms
8,352 KB
testcase_02 AC 83 ms
8,344 KB
testcase_03 AC 81 ms
8,476 KB
testcase_04 AC 81 ms
8,348 KB
testcase_05 AC 81 ms
8,344 KB
testcase_06 AC 82 ms
8,280 KB
testcase_07 AC 81 ms
8,472 KB
testcase_08 AC 82 ms
8,344 KB
testcase_09 AC 82 ms
8,348 KB
testcase_10 AC 85 ms
8,344 KB
testcase_11 AC 81 ms
8,348 KB
testcase_12 AC 57 ms
7,148 KB
testcase_13 AC 62 ms
7,368 KB
testcase_14 AC 14 ms
5,248 KB
testcase_15 AC 18 ms
5,248 KB
testcase_16 AC 43 ms
6,144 KB
testcase_17 AC 13 ms
5,248 KB
testcase_18 AC 60 ms
7,252 KB
testcase_19 AC 25 ms
5,248 KB
testcase_20 AC 70 ms
7,856 KB
testcase_21 AC 16 ms
5,248 KB
testcase_22 AC 42 ms
5,888 KB
testcase_23 AC 11 ms
5,248 KB
testcase_24 AC 24 ms
5,248 KB
testcase_25 AC 74 ms
7,908 KB
testcase_26 AC 3 ms
5,248 KB
testcase_27 AC 7 ms
5,248 KB
testcase_28 AC 43 ms
6,012 KB
testcase_29 AC 41 ms
5,888 KB
testcase_30 AC 4 ms
5,248 KB
testcase_31 AC 81 ms
8,272 KB
testcase_32 AC 28 ms
5,248 KB
testcase_33 AC 76 ms
8,044 KB
testcase_34 AC 40 ms
5,760 KB
testcase_35 AC 23 ms
5,248 KB
testcase_36 AC 25 ms
5,248 KB
testcase_37 AC 34 ms
5,632 KB
testcase_38 AC 21 ms
5,248 KB
testcase_39 AC 13 ms
5,248 KB
testcase_40 AC 52 ms
6,528 KB
testcase_41 AC 69 ms
7,692 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 1 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 2 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 1 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 2 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 1 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  int N;
  cin >> N;
  vector P(N, 0);
  for (int &i : P) cin >> i, --i;
  vector idx(N, 0), pr(N, -1), ne(N, -1);
  for (int i = 0; i < N; i++) {
    idx[P[i]] = i;
  }
  for (int i = 0; i < N - 1; i++) {
    ne[P[i]] = P[i + 1];
  }
  for (int i = 1; i < N; i++) {
    pr[P[i]] = P[i - 1];
  }
  vector ans(0, 0), ok(N, 1);
  for (int i = 0; i < N; i++) {
    if (ok[i] && ne[i] != -1) {
      int x = i, y = ne[i];
      ans.push_back(x);
      ans.push_back(y);
      ok[x] = 0, ok[y] = 0;
      if (ne[y] != -1) pr[ne[y]] = pr[x];
      if (pr[x] != -1) ne[pr[x]] = ne[y];
    }
  }
  for (int i = 0; i < N; i++) {
    if (i) cout << ' ';
    cout << ans[i] + 1;
  }
  cout << '\n';
}
0