結果

問題 No.2386 Udon Coupon (Easy)
ユーザー CyanmondCyanmond
提出日時 2023-07-21 21:50:28
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 638 bytes
コンパイル時間 2,198 ms
コンパイル使用メモリ 201,976 KB
実行使用メモリ 7,424 KB
最終ジャッジ日時 2024-09-21 23:18:02
合計ジャッジ時間 3,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// #include "atcoder/modint"

using i64 = long long;
// using Fp = atcoder::modint998244353;

int main() {
    i64 N;
    std::cin >> N;
    i64 A, B, C;
    std::cin >> A >> B >> C;

    std::vector<i64> dp(N + 1, -1);
    auto solve = [&](auto &&self, const int n) -> i64 {
        if (dp[n] != -1) return dp[n];
        i64 ret = 0;
        if (n >= 3) ret = std::max(ret, self(self, n - 3) + A);
        if (n >= 5) ret = std::max(ret, self(self, n - 5) + B);
        if (n >= 10) ret = std::max(ret, self(self, n - 10) + C);
        return dp[n] = ret;
    };
    std::cout << solve(solve, N) << std::endl;
}
0