結果

問題 No.974 最後の日までに
ユーザー drken1215drken1215
提出日時 2020-01-19 09:58:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 2,762 bytes
コンパイル時間 877 ms
コンパイル使用メモリ 87,684 KB
実行使用メモリ 40,448 KB
最終ジャッジ日時 2024-10-04 01:40:43
合計ジャッジ時間 16,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 565 ms
40,320 KB
testcase_01 AC 677 ms
40,320 KB
testcase_02 AC 642 ms
40,448 KB
testcase_03 AC 651 ms
40,320 KB
testcase_04 AC 635 ms
40,320 KB
testcase_05 AC 637 ms
40,320 KB
testcase_06 AC 661 ms
40,320 KB
testcase_07 AC 655 ms
40,192 KB
testcase_08 AC 649 ms
40,192 KB
testcase_09 AC 618 ms
40,320 KB
testcase_10 AC 624 ms
40,320 KB
testcase_11 AC 651 ms
40,448 KB
testcase_12 AC 653 ms
40,320 KB
testcase_13 AC 637 ms
40,320 KB
testcase_14 AC 630 ms
40,320 KB
testcase_15 AC 665 ms
40,320 KB
testcase_16 AC 676 ms
40,192 KB
testcase_17 AC 20 ms
6,816 KB
testcase_18 AC 19 ms
6,816 KB
testcase_19 AC 18 ms
6,820 KB
testcase_20 AC 22 ms
6,816 KB
testcase_21 AC 21 ms
6,820 KB
testcase_22 AC 20 ms
6,820 KB
testcase_23 AC 21 ms
6,820 KB
testcase_24 AC 21 ms
6,816 KB
testcase_25 AC 107 ms
15,744 KB
testcase_26 AC 232 ms
23,296 KB
testcase_27 AC 524 ms
35,712 KB
testcase_28 AC 720 ms
40,320 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 42 ms
6,820 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 386 ms
26,368 KB
testcase_34 AC 735 ms
40,320 KB
testcase_35 AC 1 ms
6,816 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 64 ms
6,820 KB
testcase_38 AC 1 ms
6,820 KB
testcase_39 AC 1 ms
6,816 KB
testcase_40 AC 15 ms
6,820 KB
testcase_41 AC 20 ms
6,816 KB
testcase_42 AC 76 ms
6,820 KB
testcase_43 AC 76 ms
6,820 KB
testcase_44 AC 55 ms
6,820 KB
testcase_45 AC 49 ms
6,816 KB
testcase_46 AC 1 ms
6,816 KB
testcase_47 AC 2 ms
6,820 KB
testcase_48 AC 2 ms
6,820 KB
testcase_49 AC 2 ms
6,816 KB
testcase_50 AC 2 ms
6,820 KB
testcase_51 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>
using namespace std;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

#define COUT(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << endl
template<class T1, class T2> ostream& operator << (ostream &s, pair<T1,T2> P)
{ return s << '<' << P.first << ", " << P.second << '>'; }
template<class T> ostream& operator << (ostream &s, vector<T> P)
{ for (int i = 0; i < P.size(); ++i) { if (i > 0) { s << " "; } s << P[i]; } return s; }
template<class T> ostream& operator << (ostream &s, vector<vector<T> > P)
{ for (int i = 0; i < P.size(); ++i) { s << endl << P[i]; } return s << endl; }

#define EACH(i, s) for (__typeof__((s).begin()) i = (s).begin(); i != (s).end(); ++i)
template<class T1, class T2> ostream& operator << (ostream &s, map<T1,T2> P)
{ EACH(it, P) { s << "<" << it->first << "->" << it->second << "> "; } return s << endl; }




using pll = pair<long long, long long>;
const long long INF = 1LL<<60;
int N;
vector<long long> a, b, c;

// 後半の各所持金差額に対する獲得好感度の差分ん最大値を求める
void rec(int n, int finish, map<long long, long long> &ma, long long syoji = 0, long long love = 0) {
    if (n == finish) {
        chmax(ma[-syoji], love);
        return;
    }

    // アルバイト
    rec(n + 1, finish, ma, syoji + a[n], love);

    // 学校からのデート
    if (n + 2 <= finish) rec(n + 2, finish, ma, syoji - c[n+1], love + b[n+1]);
}

long long solve(int mid) {
    map<long long, long long> former, latter;
    rec(0, mid, former);
    rec(mid, N, latter);
    long long cur = -INF;
    map<long long, long long> maxlatter;
    maxlatter[-INF] = -INF;
    for (auto it : latter) {
        maxlatter[it.first] = max(cur, it.second);
        chmax(cur, it.second);
    }

    //COUT(former); COUT(latter); COUT(maxlatter);

    long long res = 0;
    for (auto it : former) {
        long long need = -(it.first);
        auto it2 = maxlatter.upper_bound(need);
        --it2;
        chmax(res, it.second + it2->second);

        //cout << pll(it.first, it.second) << ": " << pll(it2->first, it2->second) << endl;
    }
    return res;
}

long long naive() {
    map<long long, long long> ma;
    rec(0, N, ma);
    long long res = 0;
    for (auto it : ma) if (it.first <= 0) chmax(res, it.second);
    return res;
}

int main() {
    while (cin >> N) {
    a.resize(N), b.resize(N), c.resize(N);
    for (int i = 0; i < N; ++i) cin >> a[i] >> b[i] >> c[i];

    if (N <= 30) cout << naive() << endl;
    else cout << max(solve(N/2), solve(N/2+1)) << endl;
    }
}
0