結果

問題 No.2957 Combo Deck Builder
ユーザー zawakasuzawakasu
提出日時 2024-11-08 23:03:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,135 bytes
コンパイル時間 1,531 ms
コンパイル使用メモリ 118,804 KB
実行使用メモリ 18,464 KB
最終ジャッジ日時 2024-11-08 23:03:31
合計ジャッジ時間 8,410 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 140 ms
16,512 KB
testcase_27 WA -
testcase_28 AC 135 ms
16,640 KB
testcase_29 WA -
testcase_30 AC 85 ms
15,396 KB
testcase_31 AC 108 ms
15,196 KB
testcase_32 AC 107 ms
15,604 KB
testcase_33 AC 118 ms
15,328 KB
testcase_34 AC 144 ms
17,836 KB
testcase_35 AC 149 ms
18,192 KB
testcase_36 AC 2 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 <iostream>
#include <iomanip>
#include <cassert>
#include <vector>
#include <queue>
#include <algorithm>

int main() {
    std::cin.tie(nullptr)->sync_with_stdio(false);

    int N;
    std::cin >> N;
    long long ans{};
    std::vector<std::vector<int>> add(N + 1), erase(N + 1);
    std::priority_queue<std::pair<int, int>> que;
    for (int i{} ; i < N ; i++) {
        int C, X, Y;
        std::cin >> C >> X >> Y;
        ans += std::min(X, Y);
        if (X <= Y) {
            erase[C].push_back(i); 
            que.push({ Y - X, i });
        }
        else {
            add[C].push_back(X - Y);
        }
    }
    std::vector<bool> erased(N);
    for (auto e : erase[0]) erased[e] = true;
    for (auto a : add[0]) que.push({ a, -1 });
    for (int i{1} ; i <= N ; i++) {
        while (que.size()) {
            auto [v, j]{que.top()};
            que.pop();
            if (j == -1 or !erased[j]) {
                ans += v;
                break;
            }
        }
        for (auto e : erase[i]) erased[e] = true;
        for (auto a : add[i]) que.push({ a, -1 });
    }
    std::cout << ans << '\n';
}
0