結果

問題 No.974 最後の日までに
ユーザー 👑 hitonanodehitonanode
提出日時 2020-01-17 23:18:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,679 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 178,828 KB
実行使用メモリ 34,576 KB
最終ジャッジ日時 2023-09-08 07:16:30
合計ジャッジ時間 12,951 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 242 ms
34,348 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 246 ms
34,264 KB
testcase_06 AC 245 ms
34,220 KB
testcase_07 AC 243 ms
34,288 KB
testcase_08 AC 243 ms
34,264 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 244 ms
34,492 KB
testcase_14 AC 242 ms
34,284 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 266 ms
34,288 KB
testcase_18 AC 263 ms
34,216 KB
testcase_19 AC 264 ms
34,568 KB
testcase_20 AC 264 ms
34,312 KB
testcase_21 AC 263 ms
34,364 KB
testcase_22 AC 263 ms
34,440 KB
testcase_23 AC 264 ms
34,392 KB
testcase_24 AC 265 ms
34,360 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 20 ms
34,308 KB
testcase_30 AC 262 ms
34,548 KB
testcase_31 AC 1 ms
4,376 KB
testcase_32 AC 20 ms
34,352 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 20 ms
34,400 KB
testcase_36 AC 20 ms
34,380 KB
testcase_37 WA -
testcase_38 AC 20 ms
34,376 KB
testcase_39 AC 20 ms
34,404 KB
testcase_40 AC 173 ms
34,360 KB
testcase_41 AC 232 ms
34,344 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 20 ms
34,376 KB
testcase_47 WA -
testcase_48 AC 21 ms
34,344 KB
testcase_49 AC 20 ms
34,336 KB
testcase_50 AC 21 ms
34,408 KB
testcase_51 AC 19 ms
34,216 KB
権限があれば一括ダウンロードができます

ソースコード

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(1e6, 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];
    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