結果

問題 No.2740 Old Maid
ユーザー true-moleculetrue-molecule
提出日時 2024-04-20 22:19:15
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 1,177 ms
コンパイル使用メモリ 107,808 KB
実行使用メモリ 23,224 KB
最終ジャッジ日時 2024-10-12 20:38:07
合計ジャッジ時間 13,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 289 ms
23,052 KB
testcase_01 AC 284 ms
23,104 KB
testcase_02 AC 285 ms
23,180 KB
testcase_03 AC 280 ms
23,176 KB
testcase_04 AC 285 ms
23,180 KB
testcase_05 AC 287 ms
23,052 KB
testcase_06 AC 285 ms
23,180 KB
testcase_07 AC 280 ms
23,176 KB
testcase_08 AC 285 ms
23,176 KB
testcase_09 AC 291 ms
23,052 KB
testcase_10 AC 280 ms
23,180 KB
testcase_11 AC 278 ms
23,224 KB
testcase_12 AC 295 ms
17,432 KB
testcase_13 AC 343 ms
18,496 KB
testcase_14 AC 46 ms
6,656 KB
testcase_15 AC 69 ms
7,768 KB
testcase_16 AC 223 ms
13,952 KB
testcase_17 AC 45 ms
6,528 KB
testcase_18 AC 298 ms
17,924 KB
testcase_19 AC 100 ms
9,344 KB
testcase_20 AC 373 ms
20,184 KB
testcase_21 AC 57 ms
7,096 KB
testcase_22 AC 210 ms
13,696 KB
testcase_23 AC 35 ms
5,888 KB
testcase_24 AC 93 ms
9,120 KB
testcase_25 AC 427 ms
21,056 KB
testcase_26 AC 4 ms
5,248 KB
testcase_27 AC 21 ms
5,248 KB
testcase_28 AC 207 ms
13,948 KB
testcase_29 AC 191 ms
13,312 KB
testcase_30 AC 8 ms
5,248 KB
testcase_31 AC 463 ms
22,796 KB
testcase_32 AC 124 ms
10,368 KB
testcase_33 AC 454 ms
21,748 KB
testcase_34 AC 193 ms
13,184 KB
testcase_35 AC 94 ms
8,880 KB
testcase_36 AC 98 ms
9,344 KB
testcase_37 AC 155 ms
11,648 KB
testcase_38 AC 84 ms
8,448 KB
testcase_39 AC 41 ms
6,272 KB
testcase_40 AC 265 ms
15,744 KB
testcase_41 AC 384 ms
19,984 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 1 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 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 2 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 2 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 <iostream>
#include <map>
#include <set>
#include <vector>

int main() {
    using namespace std;
    int n;
    cin >> n;
    map<int, int> m;
    set<pair<int, int>> s;
    vector<int> ans;
    for (int p, i = 0; i < n; ++i)
        cin >> p, s.emplace(i, p), m[p] = i;
    for (int j = 1; j <= n; ++j) {
        auto it = s.lower_bound({m.at(j) + 1, 0});
        if (it == s.end())
            continue;
        ans.push_back(j);
        s.erase({m.at(j), j});
        auto [_, u] = *it;
        ans.push_back(u);
        m.at(u) = n;
        s.erase(it);
    }
    for (bool first = true; const auto& i : ans) {
        if (first)
            first = false;
        else
            cout << ' ';
        cout << i;
    }
    cout << '\n';
}
0