結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー outlineoutline
提出日時 2021-01-14 04:50:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 1,312 bytes
コンパイル時間 929 ms
コンパイル使用メモリ 84,724 KB
実行使用メモリ 199,172 KB
最終ジャッジ日時 2024-11-23 15:41:55
合計ジャッジ時間 6,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 7 ms
16,616 KB
testcase_10 AC 5 ms
9,904 KB
testcase_11 AC 5 ms
16,168 KB
testcase_12 AC 31 ms
47,448 KB
testcase_13 AC 106 ms
167,984 KB
testcase_14 AC 19 ms
31,272 KB
testcase_15 AC 22 ms
41,684 KB
testcase_16 AC 33 ms
75,420 KB
testcase_17 AC 56 ms
110,412 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 4 ms
8,240 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 3 ms
8,440 KB
testcase_24 AC 135 ms
199,108 KB
testcase_25 AC 137 ms
199,172 KB
testcase_26 AC 137 ms
198,996 KB
testcase_27 AC 137 ms
199,044 KB
testcase_28 AC 129 ms
199,020 KB
testcase_29 AC 129 ms
199,004 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 3 ms
7,768 KB
testcase_33 AC 4 ms
6,824 KB
testcase_34 AC 5 ms
7,864 KB
testcase_35 AC 134 ms
199,004 KB
testcase_36 AC 134 ms
198,988 KB
testcase_37 AC 132 ms
199,020 KB
testcase_38 AC 136 ms
199,128 KB
testcase_39 AC 135 ms
199,140 KB
testcase_40 AC 132 ms
198,980 KB
testcase_41 AC 160 ms
199,020 KB
testcase_42 AC 137 ms
198,984 KB
testcase_43 AC 133 ms
199,008 KB
testcase_44 AC 136 ms
199,040 KB
testcase_45 AC 136 ms
199,024 KB
testcase_46 AC 126 ms
198,964 KB
testcase_47 AC 128 ms
199,032 KB
testcase_48 AC 128 ms
199,004 KB
testcase_49 AC 129 ms
199,048 KB
testcase_50 AC 129 ms
199,136 KB
testcase_51 AC 130 ms
198,992 KB
testcase_52 AC 115 ms
193,464 KB
testcase_53 AC 133 ms
199,112 KB
testcase_54 AC 114 ms
199,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}

constexpr int INF = 1001001001;
int dp[5005][5005][2];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, K;
    cin >> N >> K;
    vector<pair<int, int>> dat;
    for(int i = 0; i < N; ++i){
        int P, D;
        cin >> P >> D;
        dat.emplace_back(P, D);
    }
    sort(rbegin(dat), rend(dat));

    for(int i = 0; i <= N; ++i){
        for(int s = 0; s <= K; ++s){
            for(int f = 0; f < 2; ++f){
                dp[i][s][f] = -INF;
            }
        }
    }

    dp[0][0][0] = 0;
    for(int i = 0; i < N; ++i){
        auto [P, D] = dat[i];
        for(int s = 0; s <= K; ++s){
            chmax(dp[i + 1][s][0], dp[i][s][0]);
            chmax(dp[i + 1][s][1], dp[i][s][1]);
            chmax(dp[i + 1][s][0], dp[i][s][1] + D);
            if(s + P <= K){
                chmax(dp[i + 1][s + P][1], max(dp[i][s][0], dp[i][s][1]) + D);
            }
        }
    }

    int ans = -INF;
    for(int s = 0; s <= K; ++s){
        for(int f = 0; f < 2; ++f){
            chmax(ans, dp[N][s][f]);
        }
    }

    cout << ans << endl;

    return 0;
}
0