結果

問題 No.974 最後の日までに
ユーザー hitonanode
提出日時 2020-01-17 23:19:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 336 ms / 2,000 ms
コード長 2,752 bytes
コンパイル時間 2,005 ms
コンパイル使用メモリ 182,788 KB
実行使用メモリ 128,288 KB
最終ジャッジ日時 2024-10-04 01:31:10
合計ジャッジ時間 15,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long int;
using pint = pair<int, int>;
using plint = pair<lint, lint>;
struct fast_ios { fast_ios(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); }; } fast_ios_;
#define ALL(x) (x).begin(), (x).end()
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)
template<typename T> bool mmax(T &m, const T q) { if (m < q) {m = q; return true;} else return false; }
template<typename T> bool mmin(T &m, const T q) { if (m > q) {m = q; return true;} else return false; }
template<typename T> istream &operator>>(istream &is, vector<T> &vec){ for (auto &v : vec) is >> v; return is; }
template<typename T> ostream &operator<<(ostream &os, const vector<T> &vec){ os << "["; for (auto v : vec) os << v << ","; os << "]"; return os; }
#define dbg(x) cerr << #x << " = " << (x) << " (L" << __LINE__ << ") " << __FILE__ << endl;


vector<plint> sol(vector<plint> v) {

    int n = v.size();
    vector<plint> ret(4e6, plint(1e18, 1e18));
    int t = 0;
    REP(S, 1 << n) {
        if (S & (S >> 1)) continue;
        lint cost = 0, val = 0;
        REP(d, n) if ((S >> d) & 1) cost += v[d].first, val += v[d].second;
        ret[t] = plint(cost, val);
        t++;
    }
    ret.resize(t);
    std::sort(ALL(ret));
    IREP(i, t - 1) {
        if (ret[i].first == ret[i + 1].first) ret[i] = ret[i + 1];
    }
    REP(i, t - 1) mmax(ret[i + 1].second, ret[i].second);
    return ret;
}

lint maxcost;

lint solve(vector<plint> v1, vector<plint> v2) {
    vector<plint> w1 = sol(v1);
    vector<plint> w2 = sol(v2);
    lint ret = 0;
    for (auto p : w1) {
        lint cost = maxcost - p.first;
        auto itr = lower_bound(ALL(w2), plint(cost + 1, -1));
        if (itr == w2.begin()) continue;
        mmax(ret, prev(itr)->second + p.second);
    }
    return ret;
}

int main()
{
    int W;
    cin >> W;
    if (W == 1)
    {
        puts("0");
        return 0;
    }

    vector<lint> A(W), B(W), C(W);
    REP(i, W) cin >> A[i] >> B[i] >> C[i];
    maxcost = accumulate(ALL(A), 0LL);

    int n = (W - 1) / 2;
    vector<plint> cost_v1, cost_v2;

    vector<plint> D;
    REP(i, W - 1) D.emplace_back(A[i] + A[i + 1] + C[i + 1], B[i + 1]);

    REP(i, n - 1) cost_v1.emplace_back(D[i]);
    FOR(i, n, W - 1) cost_v2.emplace_back(D[i]);
    lint ret1 = solve(cost_v1, cost_v2);

    cost_v1.clear();
    cost_v2.clear();
    REP(i, n) cost_v1.emplace_back(D[i]);
    FOR(i, n + 1, W - 1) cost_v2.emplace_back(D[i]);
    lint ret2 = solve(cost_v1, cost_v2);

    cout << max(ret1, ret2) << endl;
}
0