結果

問題 No.2957 Combo Deck Builder
ユーザー askr58askr58
提出日時 2024-11-08 23:02:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 272 ms / 1,000 ms
コード長 1,052 bytes
コンパイル時間 5,011 ms
コンパイル使用メモリ 319,428 KB
実行使用メモリ 13,260 KB
最終ジャッジ日時 2024-11-08 23:02:36
合計ジャッジ時間 14,647 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_06 AC 251 ms
11,268 KB
testcase_07 AC 247 ms
11,280 KB
testcase_08 AC 246 ms
11,300 KB
testcase_09 AC 263 ms
11,380 KB
testcase_10 AC 239 ms
11,060 KB
testcase_11 AC 260 ms
11,244 KB
testcase_12 AC 247 ms
11,208 KB
testcase_13 AC 238 ms
11,368 KB
testcase_14 AC 232 ms
11,072 KB
testcase_15 AC 234 ms
11,132 KB
testcase_16 AC 236 ms
11,260 KB
testcase_17 AC 237 ms
11,152 KB
testcase_18 AC 238 ms
11,232 KB
testcase_19 AC 272 ms
11,164 KB
testcase_20 AC 235 ms
11,216 KB
testcase_21 AC 243 ms
11,240 KB
testcase_22 AC 241 ms
11,244 KB
testcase_23 AC 256 ms
11,212 KB
testcase_24 AC 229 ms
11,060 KB
testcase_25 AC 232 ms
11,116 KB
testcase_26 AC 265 ms
13,000 KB
testcase_27 AC 241 ms
13,260 KB
testcase_28 AC 241 ms
13,004 KB
testcase_29 AC 265 ms
13,260 KB
testcase_30 AC 236 ms
13,136 KB
testcase_31 AC 216 ms
12,980 KB
testcase_32 AC 211 ms
13,132 KB
testcase_33 AC 254 ms
13,004 KB
testcase_34 AC 222 ms
12,876 KB
testcase_35 AC 223 ms
13,008 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    int n;
    cin>>n;
    ll sum=0;
    vector<vector<pair<int,ll>>> v(2);
    for(int i=0;i<n;i++){
        int c,x,y;
        cin>>c>>x>>y;
        if(x>=y){
            v[0].push_back(make_pair(n-c,x-y));
            sum+=y;
        }else{
            v[1].push_back(make_pair(c,y-x));
            sum+=x;
        }
    }
    auto solve=[n](vector<pair<int,ll>> v)->ll{
        int m=v.size(); 
        sort(v.begin(),v.end());
        ll res=0;
        priority_queue<ll,vector<ll>,greater<ll>> pq;
        int l=0;
        for(int i=0;i<=n;i++){
            while(l<m&&v[l].first<=i){
                pq.push(v[l].second);
                l++;
            }
            while(pq.size()>i){
                pq.pop();
            }

        }
        while(!pq.empty()){
            res+=pq.top();
            pq.pop();
        }
        return res;



    };
    cout<<sum+solve(v[0])+solve(v[1])<<endl;
    return 0;
}
0