結果

問題 No.2957 Combo Deck Builder
ユーザー V_MelvilleV_Melville
提出日時 2024-11-09 17:15:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 293 ms / 1,000 ms
コード長 928 bytes
コンパイル時間 4,205 ms
コンパイル使用メモリ 256,468 KB
実行使用メモリ 15,132 KB
最終ジャッジ日時 2024-11-09 17:16:02
合計ジャッジ時間 14,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 266 ms
9,808 KB
testcase_07 AC 250 ms
9,912 KB
testcase_08 AC 293 ms
9,940 KB
testcase_09 AC 237 ms
9,760 KB
testcase_10 AC 243 ms
9,844 KB
testcase_11 AC 265 ms
9,772 KB
testcase_12 AC 238 ms
9,864 KB
testcase_13 AC 262 ms
9,760 KB
testcase_14 AC 240 ms
8,612 KB
testcase_15 AC 215 ms
8,660 KB
testcase_16 AC 231 ms
8,660 KB
testcase_17 AC 225 ms
8,788 KB
testcase_18 AC 248 ms
8,640 KB
testcase_19 AC 224 ms
8,628 KB
testcase_20 AC 219 ms
8,640 KB
testcase_21 AC 223 ms
8,640 KB
testcase_22 AC 223 ms
8,620 KB
testcase_23 AC 220 ms
8,660 KB
testcase_24 AC 245 ms
8,552 KB
testcase_25 AC 219 ms
8,788 KB
testcase_26 AC 270 ms
14,792 KB
testcase_27 AC 280 ms
14,996 KB
testcase_28 AC 243 ms
14,924 KB
testcase_29 AC 260 ms
15,132 KB
testcase_30 AC 209 ms
12,720 KB
testcase_31 AC 180 ms
12,748 KB
testcase_32 AC 206 ms
13,520 KB
testcase_33 AC 235 ms
13,516 KB
testcase_34 AC 228 ms
14,904 KB
testcase_35 AC 250 ms
15,048 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using ll = long long;
using P = pair<int, int>;

ll f(vector<P> p) {
    int n = p.size();
    rep(i, n) p[i].first = min(p[i].first, n);
    vector<vector<int>> s(n+1);
    rep(i, n) s[p[i].first].push_back(p[i].second);
    
    ll res = 0;
    priority_queue<int> q;
    for (int i = n; i >= 1; --i) {
        for (int x : s[i]) q.push(x);
        if (q.size()) {
            res += q.top();
            q.pop();
        }
    }
    return res;
}

int main() {
    int n;
    cin >> n;
    
    ll ans = 0;
    vector<P> pl, pr;
    rep(i, n) {
        int k, l, r;
        cin >> k >> l >> r;
        int m = min(l, r);
        ans += m;
        l -= m; r -= m;
        if (r > 0) pr.emplace_back(k, r);
        else pl.emplace_back(n-k, l);
    }
    ans += f(pl);
    ans += f(pr);
    cout << ans << '\n';
    
    return 0;
}
0