結果

問題 No.2957 Combo Deck Builder
ユーザー ripityripity
提出日時 2024-11-08 23:05:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 207,592 KB
実行使用メモリ 17,212 KB
最終ジャッジ日時 2024-11-08 23:05:30
合計ジャッジ時間 12,138 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 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 AC 253 ms
14,976 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 250 ms
14,976 KB
testcase_13 AC 256 ms
14,976 KB
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 291 ms
16,896 KB
testcase_28 WA -
testcase_29 AC 290 ms
16,768 KB
testcase_30 WA -
testcase_31 AC 202 ms
14,692 KB
testcase_32 AC 196 ms
12,544 KB
testcase_33 AC 265 ms
17,212 KB
testcase_34 AC 219 ms
12,544 KB
testcase_35 AC 221 ms
12,544 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];
    if(Y[i] - X[i] > 0) G[C[i]].push_back(Y[i] - X[i]);
  }
  priority_queue<ll> que;
  for(int i = N; i >= 1; i--) {
    for(ll x : G[i]) que.push(x);
    if(!que.empty()) ans += que.top(), que.pop();
  }
  cout << ans << endl;
}
0