結果

問題 No.2740 Old Maid
ユーザー Ryoga.exeRyoga.exe
提出日時 2024-04-21 02:08:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 211,652 KB
実行使用メモリ 17,724 KB
最終ジャッジ日時 2024-10-13 00:38:27
合計ジャッジ時間 13,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 254 ms
17,720 KB
testcase_01 AC 259 ms
17,720 KB
testcase_02 AC 262 ms
17,724 KB
testcase_03 AC 255 ms
17,720 KB
testcase_04 AC 256 ms
17,592 KB
testcase_05 AC 260 ms
17,592 KB
testcase_06 AC 256 ms
17,716 KB
testcase_07 AC 260 ms
17,716 KB
testcase_08 AC 264 ms
17,720 KB
testcase_09 AC 256 ms
17,720 KB
testcase_10 AC 246 ms
17,716 KB
testcase_11 AC 244 ms
17,716 KB
testcase_12 AC 263 ms
13,648 KB
testcase_13 AC 301 ms
14,400 KB
testcase_14 AC 43 ms
6,816 KB
testcase_15 AC 60 ms
6,820 KB
testcase_16 AC 191 ms
11,008 KB
testcase_17 AC 44 ms
6,816 KB
testcase_18 AC 285 ms
13,996 KB
testcase_19 AC 88 ms
7,680 KB
testcase_20 AC 342 ms
15,596 KB
testcase_21 AC 50 ms
6,816 KB
testcase_22 AC 179 ms
10,752 KB
testcase_23 AC 31 ms
6,820 KB
testcase_24 AC 87 ms
7,424 KB
testcase_25 AC 363 ms
16,212 KB
testcase_26 AC 4 ms
6,816 KB
testcase_27 AC 20 ms
6,816 KB
testcase_28 AC 184 ms
11,008 KB
testcase_29 AC 177 ms
10,624 KB
testcase_30 AC 7 ms
6,820 KB
testcase_31 AC 415 ms
17,384 KB
testcase_32 AC 104 ms
8,448 KB
testcase_33 AC 396 ms
16,708 KB
testcase_34 AC 176 ms
10,496 KB
testcase_35 AC 82 ms
7,424 KB
testcase_36 AC 91 ms
7,680 KB
testcase_37 AC 130 ms
9,344 KB
testcase_38 AC 72 ms
7,040 KB
testcase_39 AC 37 ms
6,820 KB
testcase_40 AC 231 ms
12,288 KB
testcase_41 AC 345 ms
15,460 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 2 ms
6,820 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,820 KB
testcase_48 AC 2 ms
6,820 KB
testcase_49 AC 2 ms
6,820 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 1 ms
6,820 KB
testcase_52 AC 2 ms
6,816 KB
testcase_53 AC 2 ms
6,816 KB
testcase_54 AC 2 ms
6,816 KB
testcase_55 AC 2 ms
6,816 KB
testcase_56 AC 2 ms
6,816 KB
testcase_57 AC 2 ms
6,820 KB
testcase_58 AC 2 ms
6,816 KB
testcase_59 AC 2 ms
6,816 KB
testcase_60 AC 2 ms
6,820 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 2 ms
6,816 KB
testcase_64 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
    int n;
    cin >> n;
    vector<int> p(n);
    map<int, pair<int, int>> mp;
    for (auto &e : p) {
        cin >> e;
        mp[e] = {-1, -1};
    }
    for (int i = 0; i < n; i++) {
        if (i - 1 >= 0) {
            mp[p[i]].first = p[i - 1];
        }
        if (i + 1 < n) {
            mp[p[i]].second = p[i + 1];
        }
    }
    vector<int> ans;
    for (int i = 1; i <= n; i++) {
        const auto [prv, nxt] = mp[i];
        if (nxt == -1) {
            continue;
        }
        ans.push_back(i);
        ans.push_back(nxt);
        cout << i << " " << nxt << " ";
        auto &[nprv, nnxt] = mp[nxt];
        if (prv != -1) {
            mp[prv].second = nnxt;
        }
        if (nnxt != -1) {
            mp[nnxt].first = prv;
        }
        nprv = -1;
        nnxt = -1;
    }
    cout << endl;
    return 0;
}
0