結果

問題 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,598 ms
コンパイル使用メモリ 175,444 KB
実行使用メモリ 32,772 KB
最終ジャッジ日時 2024-09-22 00:32:36
合計ジャッジ時間 3,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 15 ms
9,956 KB
testcase_25 AC 15 ms
10,312 KB
testcase_26 AC 12 ms
9,504 KB
testcase_27 AC 14 ms
10,008 KB
testcase_28 AC 12 ms
9,064 KB
testcase_29 AC 32 ms
19,492 KB
testcase_30 AC 26 ms
16,716 KB
testcase_31 AC 31 ms
19,836 KB
testcase_32 AC 30 ms
18,960 KB
testcase_33 AC 29 ms
18,416 KB
testcase_34 AC 57 ms
32,772 KB
testcase_35 AC 56 ms
31,232 KB
testcase_36 AC 53 ms
29,972 KB
testcase_37 AC 55 ms
32,128 KB
testcase_38 AC 55 ms
30,608 KB
testcase_39 AC 10 ms
6,912 KB
testcase_40 AC 7 ms
5,504 KB
testcase_41 AC 11 ms
7,552 KB
testcase_42 AC 7 ms
5,504 KB
testcase_43 AC 10 ms
7,424 KB
testcase_44 AC 16 ms
10,704 KB
testcase_45 AC 12 ms
8,100 KB
testcase_46 AC 3 ms
5,376 KB
testcase_47 AC 13 ms
8,448 KB
testcase_48 AC 10 ms
6,912 KB
testcase_49 AC 2 ms
5,376 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