結果

問題 No.2740 Old Maid
ユーザー Series_205Series_205
提出日時 2024-04-20 16:46:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 417 ms / 2,000 ms
コード長 1,772 bytes
コンパイル時間 2,312 ms
コンパイル使用メモリ 218,376 KB
実行使用メモリ 23,564 KB
最終ジャッジ日時 2024-10-12 12:35:27
合計ジャッジ時間 13,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 214 ms
22,784 KB
testcase_01 AC 215 ms
22,784 KB
testcase_02 AC 215 ms
22,784 KB
testcase_03 AC 216 ms
22,912 KB
testcase_04 AC 217 ms
22,784 KB
testcase_05 AC 213 ms
22,656 KB
testcase_06 AC 217 ms
22,784 KB
testcase_07 AC 215 ms
22,784 KB
testcase_08 AC 216 ms
22,784 KB
testcase_09 AC 216 ms
22,784 KB
testcase_10 AC 208 ms
22,784 KB
testcase_11 AC 216 ms
22,784 KB
testcase_12 AC 260 ms
17,972 KB
testcase_13 AC 299 ms
19,092 KB
testcase_14 AC 45 ms
6,816 KB
testcase_15 AC 61 ms
7,936 KB
testcase_16 AC 195 ms
14,464 KB
testcase_17 AC 42 ms
6,816 KB
testcase_18 AC 289 ms
18,536 KB
testcase_19 AC 94 ms
9,600 KB
testcase_20 AC 347 ms
20,844 KB
testcase_21 AC 51 ms
7,168 KB
testcase_22 AC 186 ms
14,080 KB
testcase_23 AC 30 ms
6,816 KB
testcase_24 AC 88 ms
9,344 KB
testcase_25 AC 377 ms
21,752 KB
testcase_26 AC 4 ms
6,816 KB
testcase_27 AC 20 ms
6,816 KB
testcase_28 AC 198 ms
14,240 KB
testcase_29 AC 180 ms
13,824 KB
testcase_30 AC 7 ms
6,816 KB
testcase_31 AC 417 ms
23,564 KB
testcase_32 AC 107 ms
10,496 KB
testcase_33 AC 402 ms
22,468 KB
testcase_34 AC 173 ms
13,568 KB
testcase_35 AC 84 ms
9,216 KB
testcase_36 AC 90 ms
9,344 KB
testcase_37 AC 139 ms
12,160 KB
testcase_38 AC 75 ms
8,576 KB
testcase_39 AC 37 ms
6,820 KB
testcase_40 AC 236 ms
16,256 KB
testcase_41 AC 352 ms
20,632 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 2 ms
6,820 KB
testcase_44 AC 2 ms
6,820 KB
testcase_45 AC 2 ms
6,816 KB
testcase_46 AC 2 ms
6,824 KB
testcase_47 AC 2 ms
6,820 KB
testcase_48 AC 2 ms
6,820 KB
testcase_49 AC 2 ms
6,816 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 2 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,820 KB
testcase_55 AC 2 ms
6,816 KB
testcase_56 AC 2 ms
6,820 KB
testcase_57 AC 2 ms
6,816 KB
testcase_58 AC 2 ms
6,816 KB
testcase_59 AC 2 ms
6,816 KB
testcase_60 AC 2 ms
6,816 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 1 ms
6,816 KB
testcase_64 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define FOR(i, l, r) for(ll i = l; i < r; i++)
#define rep(i, n) FOR(i, 0, n)
#define FORR(i, l, r) for(ll i = r - 1; i >= l; i--)
#define ALL(ar) begin(ar), end(ar)

template <typename T1, typename T2>
inline bool chmax(T1 &a, T2 b) {
    return a < b && (a = b, true);
}
template <typename T1, typename T2>
inline bool chmin(T1 &a, T2 b) {
    return a > b && (a = b, true);
}
template <typename T1, typename T2>
istream &operator>>(istream &is, pair<T1, T2> &p) {
    is >> p.first >> p.second;
    return is;
}
template <typename T1, typename T2>
ostream &operator<<(ostream &os, const pair<T1, T2> &p) {
    os << p.first << ' ' << p.second;
    return os;
}
template <typename T>
istream &operator>>(istream &is, vector<T> &v) {
    for(T &x : v) is >> x;
    return is;
}
template <typename T>
ostream &operator<<(ostream &os, const vector<T> &v) {
    for(size_t i = 0; i < v.size(); i++) os << (i ? " " : "") << v[i];
    return os;
}
//-------------------------------------------------

void solve() {
    int n;
    cin >> n;
    vector<int> p(n);
    cin >> p;
    set<int> st;
    map<int, int> pos;
    rep(i, n) st.insert(i);
    rep(i, n) {
        p[i]--;
        pos[p[i]] = i;
    }

    vector<int> q;
    rep(i, n / 2) {
        auto mn = pos.begin();
        auto nxt = st.upper_bound(mn->second);
        if(nxt == st.end()) {
            mn++;
            nxt = st.upper_bound(mn->second);
        }

        q.push_back(mn->first + 1);
        q.push_back(p[*nxt] + 1);
        pos.erase(p[*nxt]);
        st.erase(nxt);
        st.erase(mn->second);
        pos.erase(mn);
    }

    cout << q << endl;
}

int main() {
    int t = 1;
    // cin >> t;
    while(t--) solve();
}
0