結果

問題 No.974 最後の日までに
ユーザー pekempeypekempey
提出日時 2020-01-18 07:54:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 1,851 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 178,604 KB
実行使用メモリ 23,816 KB
最終ジャッジ日時 2024-10-04 01:36:44
合計ジャッジ時間 8,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
23,056 KB
testcase_01 AC 145 ms
21,616 KB
testcase_02 AC 146 ms
22,136 KB
testcase_03 AC 146 ms
22,372 KB
testcase_04 AC 145 ms
21,820 KB
testcase_05 AC 144 ms
21,620 KB
testcase_06 AC 143 ms
21,116 KB
testcase_07 AC 144 ms
21,432 KB
testcase_08 AC 144 ms
21,276 KB
testcase_09 AC 149 ms
21,800 KB
testcase_10 AC 149 ms
21,404 KB
testcase_11 AC 150 ms
21,472 KB
testcase_12 AC 150 ms
20,748 KB
testcase_13 AC 148 ms
22,120 KB
testcase_14 AC 151 ms
22,108 KB
testcase_15 AC 154 ms
21,244 KB
testcase_16 AC 151 ms
21,616 KB
testcase_17 AC 164 ms
21,672 KB
testcase_18 AC 164 ms
21,604 KB
testcase_19 AC 166 ms
21,736 KB
testcase_20 AC 166 ms
21,460 KB
testcase_21 AC 167 ms
21,684 KB
testcase_22 AC 164 ms
20,892 KB
testcase_23 AC 164 ms
21,748 KB
testcase_24 AC 165 ms
21,164 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 3 ms
6,820 KB
testcase_27 AC 125 ms
20,412 KB
testcase_28 AC 150 ms
21,356 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 165 ms
22,188 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 91 ms
13,352 KB
testcase_34 AC 150 ms
21,800 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 165 ms
20,872 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 2 ms
6,816 KB
testcase_40 AC 106 ms
19,840 KB
testcase_41 AC 127 ms
21,552 KB
testcase_42 AC 164 ms
21,196 KB
testcase_43 AC 160 ms
23,816 KB
testcase_44 AC 137 ms
20,020 KB
testcase_45 AC 98 ms
13,888 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 2 ms
6,816 KB
testcase_49 AC 1 ms
6,820 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define range(a) a.begin(), a.end()

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(15);
  int N; cin >> N;
  vector<ll> A(N), B(N), C(N); rep(i, N) cin >> A[i] >> B[i] >> C[i];
  auto solve = [&](int n1, int n2) -> ll {
    if (n1 < 0 or n2 < 0) return LLONG_MIN;
    auto dfs = [&](auto dfs, int l, int r, ll money, ll like, bool promise, vector<pair<ll, ll>> &res) -> void {
      if (l == r) {
        if (r == N or not promise) {
          res.emplace_back(money, like);
        }
        return;
      }
      if (promise) {
        dfs(dfs, l + 1, r, money - C[l], like + B[l], false, res);
      } else {
        dfs(dfs, l + 1, r, money, like, true, res);
        dfs(dfs, l + 1, r, money + A[l], like, false, res);
      }
    };
    vector<pair<ll, ll>> fst, snd; // (money, like)
    dfs(dfs, 0, n1, 0, 0, false, fst);
    dfs(dfs, n1, N, 0, 0, false, snd);
    sort(range(fst));
    sort(range(snd));
    auto normalize = [](vector<pair<ll, ll>> a) -> vector<pair<ll, ll>> {
      vector<pair<ll, ll>> res;
      for (auto p : a) {
        while (not res.empty() and res.back().second <= p.second) {
          res.pop_back();
        }
        res.push_back(p);
      }
      return res;
    };
    fst = normalize(fst);
    snd = normalize(snd);
    int k = (int)snd.size() - 1;
    ll ans = LLONG_MIN;
    for (auto p : fst) {
      while (k >= 1 and p.first + snd[k - 1].first >= 0) k--;
      if (p.first + snd[k].first >= 0) {
        ans = max(ans, p.second + snd[k].second);
      }
    }
    return ans;
  };
  ll ans = max(solve(N / 2, (N + 1) / 2), solve(N / 2 + 1, (N + 1) / 2 - 1));
  cout << ans << endl;
}
0