結果

問題 No.974 最後の日までに
ユーザー 0w10w1
提出日時 2020-01-23 20:08:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 3,063 bytes
コンパイル時間 2,417 ms
コンパイル使用メモリ 224,936 KB
実行使用メモリ 41,172 KB
最終ジャッジ日時 2024-10-04 01:43:31
合計ジャッジ時間 7,652 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
41,172 KB
testcase_01 AC 116 ms
39,936 KB
testcase_02 AC 109 ms
39,176 KB
testcase_03 AC 112 ms
39,340 KB
testcase_04 AC 114 ms
40,024 KB
testcase_05 AC 116 ms
39,596 KB
testcase_06 AC 118 ms
38,584 KB
testcase_07 AC 112 ms
39,972 KB
testcase_08 AC 109 ms
38,844 KB
testcase_09 AC 115 ms
39,980 KB
testcase_10 AC 116 ms
38,608 KB
testcase_11 AC 116 ms
40,296 KB
testcase_12 AC 115 ms
40,020 KB
testcase_13 AC 114 ms
39,832 KB
testcase_14 AC 114 ms
39,932 KB
testcase_15 AC 110 ms
39,868 KB
testcase_16 AC 110 ms
38,664 KB
testcase_17 AC 94 ms
39,136 KB
testcase_18 AC 95 ms
39,500 KB
testcase_19 AC 103 ms
39,924 KB
testcase_20 AC 101 ms
38,780 KB
testcase_21 AC 98 ms
41,072 KB
testcase_22 AC 95 ms
39,204 KB
testcase_23 AC 96 ms
38,980 KB
testcase_24 AC 96 ms
39,512 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 113 ms
33,264 KB
testcase_28 AC 130 ms
39,028 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 121 ms
40,140 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 82 ms
24,660 KB
testcase_34 AC 146 ms
38,680 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,816 KB
testcase_37 AC 129 ms
39,216 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 1 ms
6,820 KB
testcase_40 AC 76 ms
33,836 KB
testcase_41 AC 93 ms
39,588 KB
testcase_42 AC 134 ms
39,580 KB
testcase_43 AC 133 ms
39,248 KB
testcase_44 AC 116 ms
33,640 KB
testcase_45 AC 79 ms
25,208 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 2 ms
6,816 KB
testcase_48 AC 2 ms
6,816 KB
testcase_49 AC 2 ms
6,816 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);

  int W;
  cin >> W;

  vector<int64_t> A(W);
  vector<int64_t> B(W);
  vector<int64_t> C(W);
  for (int i = 0; i < W; ++i) cin >> A[i] >> B[i] >> C[i];

  if (W == 1) {
    cout << 0 << endl;
    return 0;
  }

  function<void(int, int, int, int, int64_t, int64_t, map<int, vector<pair<int64_t, int64_t>>> &)>
      dfs = [&](int x, int f, int p, int g, int64_t love, int64_t money, map<int, vector<pair<int64_t, int64_t>>> &bag) {
    if (x == g) {
      bag[f << 2 | p].emplace_back(money, love);
      return;
    }
    if (f == -1) {
      dfs(x + 1, 0, 0, g, 0, 0, bag); // school
      dfs(x + 1, 1, 1, g, B[x], -C[x], bag); // date, check when combining
      dfs(x + 1, 2, 2, g, 0, A[x], bag); // work
    } else {
      if (p == 0) {
        dfs(x + 1, f, 1, g, love + B[x], money - C[x], bag);
      } else {
        dfs(x + 1, f, 0, g, love, money, bag);
        dfs(x + 1, f, 2, g, love, money + A[x], bag);
      }
    }
  };
  map<int, vector<pair<int64_t, int64_t>>> bag0;
  dfs(0, -1, -1, W / 2, 0, 0, bag0);
  map<int, vector<pair<int64_t, int64_t>>> bag1;
  dfs(W / 2, -1, -1, W, 0, 0, bag1);

  int64_t ans = 0; {
    vector<pair<int64_t, int64_t>> g1; {
      for (int i = 0; i < 3; ++i) if (i != 1) g1.insert(g1.end(), bag0[i << 2 | 0].begin(), bag0[i << 2 | 0].end());
      sort(g1.begin(), g1.end());
    }
    vector<pair<int64_t, int64_t>> d0; {
      for (int i = 0; i < 3; ++i) d0.insert(d0.end(), bag1[1 << 2 | i].begin(), bag1[1 << 2 | i].end());
    }
    vector<int64_t> pmaxloveg(g1.size());
    pmaxloveg.back() = g1.back().second;
    for (int i = g1.size() - 2; ~i; --i) {
      pmaxloveg[i] = max(pmaxloveg[i + 1], g1[i].second);
    }
    for (auto ml : d0) {
      int64_t money, love;
      tie(money, love) = ml;
      int x = lower_bound(g1.begin(), g1.end(), make_pair(-money, (int64_t) 0)) - g1.begin();
      if (x < g1.size()) ans = max(ans, love + pmaxloveg[x]);
    }
  } {
    vector<pair<int64_t, int64_t>> g1; {
      for (int i = 0; i < 3; ++i) if (i != 1) g1.insert(g1.end(), bag0[i << 2 | 1].begin(), bag0[i << 2 | 1].end());
      for (int i = 0; i < 3; ++i) if (i != 1) g1.insert(g1.end(), bag0[i << 2 | 2].begin(), bag0[i << 2 | 2].end());
      sort(g1.begin(), g1.end());
    }
    vector<pair<int64_t, int64_t>> d0; {
      for (int i = 0; i < 3; ++i) d0.insert(d0.end(), bag1[0 << 2 | i].begin(), bag1[0 << 2 | i].end());
      for (int i = 0; i < 3; ++i) d0.insert(d0.end(), bag1[2 << 2 | i].begin(), bag1[2 << 2 | i].end());
    }
    vector<int64_t> pmaxloveg(g1.size());
    pmaxloveg.back() = g1.back().second;
    for (int i = g1.size() - 2; ~i; --i) {
      pmaxloveg[i] = max(pmaxloveg[i + 1], g1[i].second);
    }
    for (auto ml : d0) {
      int64_t money, love;
      tie(money, love) = ml;
      int x = lower_bound(g1.begin(), g1.end(), make_pair(-money, (int64_t) 0)) - g1.begin();
      if (x < g1.size()) ans = max(ans, love + pmaxloveg[x]);
    }
  }

  cout << ans << endl;

  return 0;
}
0