結果

問題 No.2957 Combo Deck Builder
ユーザー nouka28nouka28
提出日時 2024-11-08 22:44:58
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 1,000 ms
コード長 1,193 bytes
コンパイル時間 3,433 ms
コンパイル使用メモリ 258,852 KB
実行使用メモリ 20,516 KB
最終ジャッジ日時 2024-11-08 22:45:13
合計ジャッジ時間 9,066 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,248 KB
testcase_06 AC 139 ms
15,656 KB
testcase_07 AC 161 ms
15,756 KB
testcase_08 AC 139 ms
15,732 KB
testcase_09 AC 134 ms
15,472 KB
testcase_10 AC 138 ms
15,404 KB
testcase_11 AC 137 ms
15,580 KB
testcase_12 AC 135 ms
15,456 KB
testcase_13 AC 159 ms
15,584 KB
testcase_14 AC 123 ms
14,888 KB
testcase_15 AC 129 ms
14,992 KB
testcase_16 AC 127 ms
15,088 KB
testcase_17 AC 130 ms
15,092 KB
testcase_18 AC 129 ms
15,104 KB
testcase_19 AC 131 ms
15,172 KB
testcase_20 AC 127 ms
15,100 KB
testcase_21 AC 124 ms
15,080 KB
testcase_22 AC 146 ms
15,068 KB
testcase_23 AC 123 ms
15,084 KB
testcase_24 AC 125 ms
14,932 KB
testcase_25 AC 126 ms
14,992 KB
testcase_26 AC 153 ms
20,224 KB
testcase_27 AC 155 ms
20,412 KB
testcase_28 AC 153 ms
20,400 KB
testcase_29 AC 171 ms
20,408 KB
testcase_30 AC 97 ms
12,164 KB
testcase_31 AC 78 ms
12,024 KB
testcase_32 AC 127 ms
20,340 KB
testcase_33 AC 134 ms
20,516 KB
testcase_34 AC 130 ms
20,056 KB
testcase_35 AC 132 ms
20,384 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 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define REP(i, x, y) for (auto i = (x); i < (y); i++)
#define RREP(i, x, y) for (auto i = (y) - 1; (x) <= i; i--)
#define ALL(x) (x).begin(), (x).end()
#pragma GCC optimize("O3")
#define size(A) ((A).size())
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int T=1;
  while(T--){
    int N;
    cin >> N;
    vector<ll> K(N), L(N), R(N);
    REP(i, 0, N){
      cin >> K[i] >> R[i] >> L[i];
	  K[i]=max<ll>(K[i],0);
    }
    vector<array<ll, 2>> A, B;
    ll ans = 0;
    REP(i, 0, N){
      if(L[i] > R[i]){
        A.push_back({K[i], L[i] - R[i]});
        ans += R[i];
      }else{
        B.push_back({N - K[i], R[i] - L[i]});
        ans += L[i];
      }
    }
    sort(ALL(A));
    multiset<ll> ms;
    REP(i, 0, size(A)){
        ms.insert(A[i][1]);
      if(size(ms) > A[i][0]){
        ms.erase(ms.begin());
      }
    }
    ans += accumulate(ALL(ms), 0LL);

    ms.clear();
    sort(ALL(B));
    REP(i, 0, size(B)){
        ms.insert(B[i][1]);
      if(size(ms) > B[i][0]){
        ms.erase(ms.begin());
      }
    }
    ans += accumulate(ALL(ms), 0LL);
    cout << ans << "\n";
  }
  return 0;
}
0