結果

問題 No.2957 Combo Deck Builder
ユーザー 👑 potato167potato167
提出日時 2024-11-08 22:00:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 1,000 ms
コード長 1,435 bytes
コンパイル時間 2,246 ms
コンパイル使用メモリ 213,944 KB
実行使用メモリ 9,936 KB
最終ジャッジ日時 2024-11-08 22:00:49
合計ジャッジ時間 12,226 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 248 ms
8,148 KB
testcase_07 AC 272 ms
8,108 KB
testcase_08 AC 250 ms
8,224 KB
testcase_09 AC 246 ms
8,116 KB
testcase_10 AC 240 ms
8,108 KB
testcase_11 AC 244 ms
8,104 KB
testcase_12 AC 265 ms
8,152 KB
testcase_13 AC 252 ms
8,232 KB
testcase_14 AC 249 ms
8,092 KB
testcase_15 AC 249 ms
8,020 KB
testcase_16 AC 250 ms
7,980 KB
testcase_17 AC 268 ms
8,084 KB
testcase_18 AC 245 ms
7,976 KB
testcase_19 AC 251 ms
8,028 KB
testcase_20 AC 245 ms
8,024 KB
testcase_21 AC 249 ms
8,108 KB
testcase_22 AC 277 ms
7,976 KB
testcase_23 AC 244 ms
7,980 KB
testcase_24 AC 244 ms
8,024 KB
testcase_25 AC 248 ms
8,020 KB
testcase_26 AC 252 ms
9,932 KB
testcase_27 AC 287 ms
9,932 KB
testcase_28 AC 265 ms
9,932 KB
testcase_29 AC 266 ms
9,936 KB
testcase_30 AC 204 ms
5,248 KB
testcase_31 AC 200 ms
7,500 KB
testcase_32 AC 243 ms
9,932 KB
testcase_33 AC 248 ms
9,936 KB
testcase_34 AC 200 ms
5,248 KB
testcase_35 AC 202 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 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>
using namespace std;
//https://atcoder.jp/contests/aising2020/submissions/15187101
int main() {
    int T = 1;
    // cin>>T;
    for(int i=0;i<T;i++){
        int N;
        int64_t Z=0;
        cin>>N;
        vector<pair<int,int64_t>> l;
        vector<pair<int,int64_t>> r;
        for(int i=0;i<N;i++){
            int a;
            int64_t b,c;
            cin>>a>>b>>c;
            swap(b, c);
            if(b>c){
                Z+=c;
                l.push_back(make_pair(a,b-c));
            }
            else if(c>b&&a!=N){
                Z+=b;
                r.push_back(make_pair(N-a,c-b));
            }
            else{
                Z+=b;
            }
        }
        sort(l.begin(), l.end());
        sort(r.begin(), r.end());
        priority_queue<int64_t, vector<int64_t>, greater<int64_t>> pq;
        for(auto x:l){
            int a;
            int64_t b;
            tie(a,b)=x;
            pq.push(b);
            if(a<pq.size()){
                pq.pop();
            }
        }
        while(!pq.empty()){
            Z+=pq.top();
            pq.pop();
        }
        for(auto x:r){
            int a;
            int64_t b;
            tie(a,b)=x;
            pq.push(b);
            if(a<pq.size()){
                pq.pop();
            }
        }
        while(!pq.empty()){
            Z+=pq.top();
            pq.pop();
        }
        cout<<Z<<endl;
    }
}
0