#include #include #include #include using ll = long long; const ll INF = 52000000000000; std::vector a, b, c; void DFS(int step, int due, std::map &loveBySpentMoney, ll spentMoney, ll love) { if (step == due) { // ma[足りない所持金] = 好感度 loveBySpentMoney[spentMoney] = std::max(loveBySpentMoney[spentMoney], love); return; } // アルバイト DFS(step + 1, due, loveBySpentMoney, spentMoney - a[step], love); // 学校行って、次のステップでデート if (step + 2 <= due) DFS(step + 2, due, loveBySpentMoney, spentMoney + c[step + 1], love + b[step + 1]); } ll solve(int mid, int due) { // 前半と後半で分けて考える std::map prevs, posts; DFS(0, mid, prevs, 0, 0); DFS(mid, due, posts, 0, 0); // 後半で所持金の状態ごとの好感度の最大値を出しておく. auto cur = -INF; posts[-INF] = -INF; // map なのでキー順(=消費金額順)にソートされているはず. for (auto it : posts) { posts[it.first] = std::max(cur, it.second); cur = std::max(cur, it.second); } // 前半は後半で足りなくなる分の資金を先に稼いでおいたものを採用 ll res = 0; for (auto prev : prevs) { auto need = prev.first; auto post = posts.upper_bound(-need); --post; res = std::max(res, prev.second + post->second); } return res; } int main() { int N; std::cin >> N; a.resize(N), b.resize(N), c.resize(N); for (auto i = 0; i < N; ++i) std::cin >> a[i] >> b[i] >> c[i]; std::cout << std::max(solve(N / 2, N), solve(N / 2 + 1, N)) << std::endl; }