結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー face4face4
提出日時 2019-12-14 10:01:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 1,144 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 80,576 KB
実行使用メモリ 199,088 KB
最終ジャッジ日時 2024-06-28 03:04:15
合計ジャッジ時間 7,331 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
198,872 KB
testcase_01 AC 50 ms
198,812 KB
testcase_02 AC 49 ms
198,936 KB
testcase_03 AC 49 ms
198,848 KB
testcase_04 AC 49 ms
198,928 KB
testcase_05 AC 51 ms
198,672 KB
testcase_06 AC 52 ms
198,908 KB
testcase_07 AC 50 ms
198,976 KB
testcase_08 AC 52 ms
198,808 KB
testcase_09 AC 53 ms
198,884 KB
testcase_10 AC 52 ms
198,812 KB
testcase_11 AC 51 ms
198,828 KB
testcase_12 AC 70 ms
198,732 KB
testcase_13 AC 116 ms
198,944 KB
testcase_14 AC 62 ms
198,836 KB
testcase_15 AC 61 ms
198,752 KB
testcase_16 AC 67 ms
198,712 KB
testcase_17 AC 71 ms
198,956 KB
testcase_18 AC 52 ms
198,896 KB
testcase_19 AC 49 ms
198,720 KB
testcase_20 AC 51 ms
198,772 KB
testcase_21 AC 51 ms
198,932 KB
testcase_22 AC 50 ms
198,896 KB
testcase_23 AC 51 ms
198,936 KB
testcase_24 AC 143 ms
198,884 KB
testcase_25 AC 146 ms
198,896 KB
testcase_26 AC 164 ms
198,868 KB
testcase_27 AC 142 ms
198,948 KB
testcase_28 AC 125 ms
198,984 KB
testcase_29 AC 125 ms
198,796 KB
testcase_30 AC 51 ms
198,884 KB
testcase_31 AC 52 ms
198,688 KB
testcase_32 AC 52 ms
198,756 KB
testcase_33 AC 51 ms
198,824 KB
testcase_34 AC 51 ms
198,916 KB
testcase_35 AC 141 ms
198,932 KB
testcase_36 AC 147 ms
198,856 KB
testcase_37 AC 144 ms
199,016 KB
testcase_38 AC 143 ms
198,964 KB
testcase_39 AC 145 ms
199,020 KB
testcase_40 AC 136 ms
198,920 KB
testcase_41 AC 138 ms
199,080 KB
testcase_42 AC 139 ms
198,916 KB
testcase_43 AC 137 ms
198,952 KB
testcase_44 AC 137 ms
199,088 KB
testcase_45 AC 138 ms
198,996 KB
testcase_46 AC 129 ms
199,088 KB
testcase_47 AC 124 ms
199,084 KB
testcase_48 AC 123 ms
198,944 KB
testcase_49 AC 124 ms
198,956 KB
testcase_50 AC 124 ms
199,012 KB
testcase_51 AC 128 ms
198,892 KB
testcase_52 AC 108 ms
198,944 KB
testcase_53 AC 119 ms
198,812 KB
testcase_54 AC 108 ms
198,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef pair<int,int> pii;
int dp[2][5001][5001];

int main(){
    memset(dp, -1, sizeof(dp));
    dp[0][0][0] = 0;
    int n, k;
    cin >> n >> k;
    vector<pii> v;
    for(int i = 0; i < n; i++){
        int p, d;
        cin >> p >> d;
        v.push_back({p, d});
    }
    sort(v.rbegin(), v.rend());
    for(int i = 0; i < n; i++){
        for(int j = k; j >= 0; j--){
            dp[1][i+1][j] = max(dp[1][i+1][j], dp[1][i][j]);
            dp[0][i+1][j] = max(dp[0][i+1][j], dp[0][i][j]);
            if(dp[0][i][j] != -1){
                if(j+v[i].first <= k)   dp[1][i+1][j+v[i].first] = max(dp[1][i+1][j+v[i].first], dp[0][i][j]+v[i].second);
            }
            if(dp[1][i][j] != -1){
                dp[0][i+1][j] = max(dp[0][i+1][j], dp[1][i][j]+v[i].second);
                dp[1][i+1][j] = max(dp[1][i+1][j], dp[1][i][j]);
            }
        }
    }
    int ans = 0;
    for(int i = 0; i <= k; i++){
        ans = max(ans, dp[0][n][i]);
        ans = max(ans, dp[1][n][i]);
    }
    cout << ans << endl;
    return 0;
}
0