結果

問題 No.2957 Combo Deck Builder
ユーザー 👑 emthrmemthrm
提出日時 2024-11-09 13:52:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 1,995 bytes
コンパイル時間 3,599 ms
コンパイル使用メモリ 262,880 KB
実行使用メモリ 22,456 KB
最終ジャッジ日時 2024-11-09 13:52:51
合計ジャッジ時間 9,784 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 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 123 ms
22,280 KB
testcase_07 AC 122 ms
22,456 KB
testcase_08 AC 125 ms
22,324 KB
testcase_09 AC 124 ms
22,332 KB
testcase_10 AC 122 ms
21,724 KB
testcase_11 AC 122 ms
22,156 KB
testcase_12 AC 122 ms
22,172 KB
testcase_13 AC 133 ms
22,168 KB
testcase_14 AC 97 ms
18,128 KB
testcase_15 AC 98 ms
18,264 KB
testcase_16 AC 98 ms
18,272 KB
testcase_17 AC 99 ms
18,328 KB
testcase_18 AC 99 ms
18,212 KB
testcase_19 AC 98 ms
18,476 KB
testcase_20 AC 97 ms
18,164 KB
testcase_21 AC 98 ms
18,224 KB
testcase_22 AC 100 ms
18,204 KB
testcase_23 AC 98 ms
18,236 KB
testcase_24 AC 98 ms
18,092 KB
testcase_25 AC 97 ms
18,220 KB
testcase_26 AC 127 ms
20,076 KB
testcase_27 AC 132 ms
19,848 KB
testcase_28 AC 128 ms
20,088 KB
testcase_29 AC 127 ms
19,712 KB
testcase_30 AC 78 ms
15,616 KB
testcase_31 AC 70 ms
15,616 KB
testcase_32 AC 71 ms
15,616 KB
testcase_33 AC 77 ms
15,616 KB
testcase_34 AC 78 ms
15,488 KB
testcase_35 AC 76 ms
15,616 KB
testcase_36 AC 2 ms
5,248 KB
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;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

int main() {
  int n; cin >> n;
  ll sum = 0;
  vector<vector<int>> l(n), r(n);
  REP(i, n) {
    int c, x, y; cin >> c >> x >> y;
    if (x == y) {
      sum += x;
      continue;
    }
    if (c == 0) {
      sum += x;
      continue;
    }
    if (c == n) {
      sum += y;
      continue;
    }
    if (x > y) {
      r[c].emplace_back(x - y);
      sum += y;
    } else {
      l[c - 1].emplace_back(y - x);
      sum += x;
    }
  }
  priority_queue<int> que;
  vector<ll> ls, rs;
  for (int i = n - 1; i >= 0; --i) {
    for (const int v : l[i]) que.emplace(v);
    if (!que.empty()) {
      ls.emplace_back(que.top());
      que.pop();
    }
  }
  ranges::reverse(ls);
  ls.resize(n, 0);
  FOR(i, 1, n) ls[i] += ls[i - 1];
  while (!que.empty()) que.pop();
  REP(i, n) {
    for (const int v : r[i]) que.emplace(v);
    if (!que.empty()) {
      rs.emplace_back(que.top());
      que.pop();
    }
  }
  ranges::reverse(rs);
  rs.resize(n, 0);
  ranges::reverse(rs);
  for (int i = n - 2; i >= 0; --i) rs[i] += rs[i + 1];
  ll ans = max(rs.front(), ls.back());
  REP(i, n - 1) chmax(ans, ls[i] + rs[i + 1]);
  cout << sum + ans << '\n';
  return 0;
}
0