結果

問題 No.1947 質より種類数
ユーザー maguroflymagurofly
提出日時 2022-05-20 21:54:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 899 bytes
コンパイル時間 2,570 ms
コンパイル使用メモリ 168,748 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-20 12:28:38
合計ジャッジ時間 3,840 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 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 AC 2 ms
4,348 KB
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 4 ms
4,348 KB
testcase_10 AC 4 ms
4,348 KB
testcase_11 AC 7 ms
4,348 KB
testcase_12 AC 5 ms
4,348 KB
testcase_13 AC 3 ms
4,348 KB
testcase_14 AC 27 ms
4,348 KB
testcase_15 AC 15 ms
4,348 KB
testcase_16 AC 38 ms
4,348 KB
testcase_17 AC 50 ms
4,348 KB
testcase_18 AC 86 ms
4,348 KB
testcase_19 AC 77 ms
4,348 KB
testcase_20 AC 58 ms
4,348 KB
testcase_21 AC 68 ms
4,348 KB
testcase_22 AC 5 ms
4,348 KB
testcase_23 AC 31 ms
4,348 KB
testcase_24 AC 3 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 2 ms
4,348 KB
testcase_28 AC 2 ms
4,348 KB
testcase_29 AC 88 ms
4,348 KB
testcase_30 AC 68 ms
4,348 KB
testcase_31 AC 2 ms
4,348 KB
testcase_32 AC 2 ms
4,348 KB
testcase_33 AC 2 ms
4,348 KB
testcase_34 AC 40 ms
4,348 KB
testcase_35 AC 39 ms
4,348 KB
testcase_36 AC 69 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
// #include <atcoder/all>
// using namespace atcoder;
#define rep(i, l, r) for (auto i = (l); i < (r); i++)
#define all(a) a.begin(), a.end()
#define chmin(dest, src) if ((dest) > (src)) dest = (src)
#define chmax(dest, src) if ((dest) < (src)) dest = (src)
using ll = int;
using i64 = long long;
using i32 = long;
using u64 = unsigned long long;
using u32 = unsigned long;

int main() {
    int N, V, C; cin >> N >> V >> C;
    
    vector<int> dp(V + 1, 0);
    rep (i, 0, N) {
        int v, w; cin >> v >> w;
        vector<int> dp2(V + 1, 0);

        rep (i, v, V + 1) {
            chmax(dp2[i], dp[i - v] + C + w);
            chmax(dp2[i], dp2[i - v] + w);
        }
        rep (i, 0, V + 1) {
            chmax(dp[i], dp2[i]);
        }
    }

    int ans = 0;
    rep (i, 0, V + 1) chmax(ans, dp[i]);

    cout << ans << endl;

  return 0;
}
0