結果

問題 No.2957 Combo Deck Builder
ユーザー ripityripity
提出日時 2024-11-08 23:12:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 611 bytes
コンパイル時間 2,703 ms
コンパイル使用メモリ 208,104 KB
実行使用メモリ 17,216 KB
最終ジャッジ日時 2024-11-08 23:12:18
合計ジャッジ時間 12,897 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 WA -
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
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 WA -
testcase_27 AC 292 ms
17,024 KB
testcase_28 WA -
testcase_29 AC 276 ms
16,896 KB
testcase_30 AC 261 ms
17,144 KB
testcase_31 AC 188 ms
14,696 KB
testcase_32 AC 189 ms
14,780 KB
testcase_33 AC 244 ms
17,216 KB
testcase_34 AC 261 ms
16,640 KB
testcase_35 AC 280 ms
16,768 KB
testcase_36 WA -
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>
using namespace std;

using ll = long long;

int main() {
  int N;
  cin >> N;
  ll ans = 0;
  vector<ll> C(N), X(N), Y(N);
  vector<vector<ll>> G(N + 1);
  for(int i = 0; i < N; i++) {
    cin >> C[i] >> X[i] >> Y[i];
    ans += X[i];
    G[C[i]].push_back(Y[i] - X[i]);
  }
  int k = 0;
  priority_queue<ll> que;
  for(int i = N; i >= 1; i--) {
    for(ll x : G[i]) que.push(x);
    if(que.empty()) {
      k++;
    }else {
      ll x = que.top();
      if(x < 0 && k > 0) {
        k--, que.pop();
      }else {
        ans += x, que.pop();
      }
    }
  }
  cout << ans << endl;
}
0