結果

問題 No.2390 Udon Coupon (Hard)
ユーザー t98slidert98slider
提出日時 2023-07-21 23:02:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 2,076 ms
コンパイル使用メモリ 171,392 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-04-15 21:04:22
合計ジャッジ時間 5,831 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
18,816 KB
testcase_01 AC 24 ms
18,816 KB
testcase_02 AC 84 ms
18,944 KB
testcase_03 AC 83 ms
18,816 KB
testcase_04 AC 82 ms
18,816 KB
testcase_05 AC 23 ms
18,816 KB
testcase_06 AC 87 ms
18,816 KB
testcase_07 AC 20 ms
18,816 KB
testcase_08 AC 19 ms
18,944 KB
testcase_09 AC 79 ms
18,816 KB
testcase_10 AC 23 ms
18,688 KB
testcase_11 AC 19 ms
18,816 KB
testcase_12 AC 24 ms
18,944 KB
testcase_13 AC 20 ms
18,816 KB
testcase_14 AC 22 ms
18,816 KB
testcase_15 AC 21 ms
18,816 KB
testcase_16 AC 23 ms
18,816 KB
testcase_17 AC 19 ms
18,944 KB
testcase_18 AC 21 ms
18,944 KB
testcase_19 AC 20 ms
18,816 KB
testcase_20 AC 24 ms
18,944 KB
testcase_21 AC 24 ms
18,816 KB
testcase_22 AC 80 ms
18,816 KB
testcase_23 AC 80 ms
18,816 KB
testcase_24 AC 79 ms
18,816 KB
testcase_25 AC 80 ms
18,944 KB
testcase_26 AC 81 ms
18,816 KB
testcase_27 AC 81 ms
18,944 KB
testcase_28 AC 81 ms
18,816 KB
testcase_29 AC 81 ms
18,816 KB
testcase_30 AC 80 ms
18,816 KB
testcase_31 AC 82 ms
18,944 KB
testcase_32 AC 82 ms
18,816 KB
testcase_33 AC 83 ms
18,816 KB
testcase_34 AC 81 ms
18,816 KB
testcase_35 AC 82 ms
18,816 KB
testcase_36 AC 82 ms
18,944 KB
testcase_37 AC 83 ms
18,944 KB
testcase_38 AC 82 ms
18,816 KB
testcase_39 AC 81 ms
18,688 KB
testcase_40 AC 82 ms
18,816 KB
testcase_41 AC 81 ms
18,816 KB
testcase_42 AC 80 ms
18,944 KB
testcase_43 AC 80 ms
18,816 KB
testcase_44 AC 80 ms
18,816 KB
testcase_45 AC 81 ms
18,944 KB
testcase_46 AC 78 ms
18,944 KB
testcase_47 AC 80 ms
18,816 KB
testcase_48 AC 82 ms
18,944 KB
testcase_49 AC 20 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n;
    cin >> n;
    vector<pair<ll, ll>> a(3);
    for(int i = 0; i < 3; i++){
        cin >> a[i].first >> a[i].second;
    }
    sort(a.begin(), a.end(), [&](pair<ll, ll> lhs, pair<ll, ll> rhs){
        return lhs.second * rhs.first < lhs.first * rhs.second;
    });
    int lcmv = 2000000;
    vector<ll> dp(lcmv + 1);
    for(int i = 0; i < 3; i++){
        ll v1, v2;
        tie(v1, v2) = a[i];
        for(int j = 0; j + v1 <= lcmv; j++){
            dp[j + v1] = max(dp[j + v1], dp[j] + v2);
        }
    }
    ll ans = 0;
    for(int j = 0; j <= lcmv && j <= n; j++){
        for(int k = 0; k < 3; k++){
            ans = max(ans, dp[j] + ((n - j) / a[k].first) * a[k].second);
        }
    }
    cout << ans << '\n';
}
0