結果

問題 No.2390 Udon Coupon (Hard)
ユーザー t98slidert98slider
提出日時 2023-07-21 23:01:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 865 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 176,128 KB
実行使用メモリ 32,708 KB
最終ジャッジ日時 2023-10-21 23:03:19
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 WA -
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 2 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 AC 15 ms
9,960 KB
testcase_25 AC 15 ms
10,488 KB
testcase_26 AC 13 ms
9,696 KB
testcase_27 AC 15 ms
10,224 KB
testcase_28 AC 12 ms
9,168 KB
testcase_29 AC 32 ms
19,652 KB
testcase_30 AC 27 ms
16,884 KB
testcase_31 AC 32 ms
19,916 KB
testcase_32 AC 31 ms
19,124 KB
testcase_33 AC 32 ms
18,400 KB
testcase_34 AC 59 ms
32,708 KB
testcase_35 AC 52 ms
31,388 KB
testcase_36 AC 51 ms
30,136 KB
testcase_37 AC 56 ms
32,180 KB
testcase_38 AC 53 ms
30,928 KB
testcase_39 AC 9 ms
7,124 KB
testcase_40 AC 6 ms
5,608 KB
testcase_41 AC 10 ms
7,652 KB
testcase_42 AC 6 ms
5,608 KB
testcase_43 AC 11 ms
7,652 KB
testcase_44 AC 15 ms
10,752 KB
testcase_45 AC 11 ms
8,180 KB
testcase_46 AC 5 ms
4,348 KB
testcase_47 AC 14 ms
8,444 KB
testcase_48 AC 10 ms
7,124 KB
testcase_49 AC 2 ms
4,348 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;
    });
    ll lcmv = a[0].first * a[1].first / __gcd(a[0].first, a[1].first);
    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++){
        ans = max(ans, dp[j] + ((n - j) / a[2].first) * a[2].second);
    }
    cout << ans << '\n';
}
0