結果

問題 No.974 最後の日までに
ユーザー 後藤佳樹後藤佳樹
提出日時 2023-02-25 13:01:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 1,779 bytes
コンパイル時間 1,501 ms
コンパイル使用メモリ 86,380 KB
実行使用メモリ 31,104 KB
最終ジャッジ日時 2024-09-13 11:00:54
合計ジャッジ時間 20,822 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 678 ms
30,976 KB
testcase_01 AC 785 ms
31,104 KB
testcase_02 AC 746 ms
30,976 KB
testcase_03 AC 757 ms
30,976 KB
testcase_04 AC 749 ms
30,976 KB
testcase_05 AC 763 ms
30,848 KB
testcase_06 AC 752 ms
30,976 KB
testcase_07 AC 751 ms
30,976 KB
testcase_08 AC 743 ms
30,976 KB
testcase_09 AC 749 ms
30,976 KB
testcase_10 AC 794 ms
30,976 KB
testcase_11 AC 786 ms
30,976 KB
testcase_12 AC 805 ms
31,104 KB
testcase_13 AC 759 ms
30,976 KB
testcase_14 AC 760 ms
30,976 KB
testcase_15 AC 813 ms
30,976 KB
testcase_16 AC 820 ms
30,976 KB
testcase_17 AC 30 ms
6,944 KB
testcase_18 AC 30 ms
6,940 KB
testcase_19 AC 29 ms
6,940 KB
testcase_20 AC 32 ms
6,944 KB
testcase_21 AC 32 ms
6,944 KB
testcase_22 AC 32 ms
6,948 KB
testcase_23 AC 31 ms
6,944 KB
testcase_24 AC 31 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 648 ms
23,168 KB
testcase_28 AC 884 ms
30,848 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 67 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 465 ms
20,480 KB
testcase_34 AC 911 ms
31,104 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 122 ms
6,944 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 23 ms
6,944 KB
testcase_41 AC 27 ms
6,940 KB
testcase_42 AC 141 ms
6,940 KB
testcase_43 AC 139 ms
6,940 KB
testcase_44 AC 101 ms
6,940 KB
testcase_45 AC 87 ms
6,944 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <algorithm>

using ll = long long;
const ll INF = 52000000000000;

std::vector<ll> a, b, c;

void DFS(int step, int due, std::map<ll, ll> &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<ll, ll> 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;
}
0