結果

問題 No.2617 容量3のナップザック
ユーザー KKT89KKT89
提出日時 2024-01-31 13:58:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,662 bytes
コンパイル時間 3,069 ms
コンパイル使用メモリ 220,820 KB
実行使用メモリ 42,744 KB
最終ジャッジ日時 2024-09-28 10:22:38
合計ジャッジ時間 7,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 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 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 121 ms
32,832 KB
testcase_13 AC 145 ms
41,056 KB
testcase_14 AC 115 ms
31,608 KB
testcase_15 AC 94 ms
26,276 KB
testcase_16 AC 85 ms
24,168 KB
testcase_17 AC 109 ms
30,584 KB
testcase_18 AC 112 ms
30,620 KB
testcase_19 AC 21 ms
8,208 KB
testcase_20 AC 129 ms
34,728 KB
testcase_21 AC 59 ms
17,768 KB
testcase_22 AC 146 ms
39,168 KB
testcase_23 AC 144 ms
38,220 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 89 ms
24,776 KB
testcase_26 AC 89 ms
25,384 KB
testcase_27 AC 49 ms
15,224 KB
testcase_28 AC 6 ms
5,376 KB
testcase_29 AC 56 ms
16,444 KB
testcase_30 AC 137 ms
36,092 KB
testcase_31 AC 109 ms
29,772 KB
testcase_32 AC 151 ms
42,620 KB
testcase_33 AC 160 ms
42,624 KB
testcase_34 AC 161 ms
42,632 KB
testcase_35 AC 158 ms
42,744 KB
testcase_36 AC 162 ms
42,500 KB
testcase_37 AC 160 ms
42,616 KB
testcase_38 AC 161 ms
42,612 KB
testcase_39 AC 158 ms
42,448 KB
testcase_40 AC 158 ms
42,620 KB
testcase_41 AC 81 ms
42,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) { return (ull)rng() % B; }

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n, k;
    cin >> n >> k;
    ll seed, a, b, m;
    cin >> seed >> a >> b >> m;
    vector<ll> f(2 * n);
    f[0] = seed;
    for (int i = 1; i < 2 * n; i++) {
        f[i] = (f[i - 1] * a + b) % m;
    }
    vector<ll> v[3];
    vector<ll> rs[3];
    for (int i = 0; i < n; i++) {
        int w = f[i] % 3 + 1;
        v[w - 1].push_back(w * f[n + i]);
    }
    for (int i = 0; i < 3; i++) {
        sort(v[i].rbegin(), v[i].rend());
        rs[i].resize(v[i].size() + 1);
        for (int j = 0; j < v[i].size(); j++) {
            rs[i][j + 1] = rs[i][j] + v[i][j];
        }
    }

    vector<ll> dp(n + 1);
    int r = 0;
    for (int i = 1; i <= n; i++) {
        auto cal = [&](int t) -> ll {
            ll res = rs[1][min((int)v[1].size(), t)] + rs[0][min((int)v[0].size(), 3 * i - t * 2)];
            return res;
        };
        while (r < v[1].size() and r < i) {
            ll pre = cal(r);
            ll nxt = cal(r + 1);
            if (pre <= nxt) {
                r += 1;
            } else {
                break;
            }
        }
        dp[i] = cal(r);
    }

    ll res = 0;
    ll sum = 0;
    for (int i = 0; i <= v[2].size(); i++) {
        if (i > k) break;
        res = max(res, sum + dp[k - i]);
        if (i == v[2].size()) break;
        sum += v[2][i];
    }
    cout << res << endl;
}
0