結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
8,348 KB
testcase_01 AC 77 ms
8,348 KB
testcase_02 AC 73 ms
8,344 KB
testcase_03 AC 73 ms
8,476 KB
testcase_04 AC 73 ms
8,348 KB
testcase_05 AC 81 ms
8,476 KB
testcase_06 AC 74 ms
8,348 KB
testcase_07 AC 73 ms
8,352 KB
testcase_08 AC 71 ms
8,348 KB
testcase_09 AC 72 ms
8,412 KB
testcase_10 AC 73 ms
8,476 KB
testcase_11 AC 77 ms
8,348 KB
testcase_12 AC 50 ms
7,148 KB
testcase_13 AC 57 ms
7,368 KB
testcase_14 AC 12 ms
5,376 KB
testcase_15 AC 17 ms
5,376 KB
testcase_16 AC 40 ms
6,016 KB
testcase_17 AC 12 ms
5,376 KB
testcase_18 AC 53 ms
7,244 KB
testcase_19 AC 26 ms
5,376 KB
testcase_20 AC 60 ms
7,728 KB
testcase_21 AC 14 ms
5,376 KB
testcase_22 AC 37 ms
5,888 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 21 ms
5,376 KB
testcase_25 AC 67 ms
7,912 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 7 ms
5,376 KB
testcase_28 AC 39 ms
6,144 KB
testcase_29 AC 37 ms
5,888 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 72 ms
8,268 KB
testcase_32 AC 25 ms
5,376 KB
testcase_33 AC 71 ms
8,048 KB
testcase_34 AC 37 ms
5,760 KB
testcase_35 AC 22 ms
5,376 KB
testcase_36 AC 22 ms
5,376 KB
testcase_37 AC 30 ms
5,504 KB
testcase_38 AC 19 ms
5,376 KB
testcase_39 AC 11 ms
5,376 KB
testcase_40 AC 51 ms
6,400 KB
testcase_41 AC 63 ms
7,688 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 1 ms
5,376 KB
testcase_50 AC 1 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 1 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 KB
testcase_57 AC 1 ms
5,376 KB
testcase_58 AC 2 ms
5,376 KB
testcase_59 AC 2 ms
5,376 KB
testcase_60 AC 2 ms
5,376 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
testcase_63 AC 1 ms
5,376 KB
testcase_64 AC 1 ms
5,376 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