結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー ace_amuroace_amuro
提出日時 2022-06-30 12:30:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 902 ms
コンパイル使用メモリ 83,108 KB
実行使用メモリ 199,168 KB
最終ジャッジ日時 2024-05-03 09:00:02
合計ジャッジ時間 5,894 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 8 ms
9,088 KB
testcase_10 AC 4 ms
6,656 KB
testcase_11 AC 5 ms
7,296 KB
testcase_12 AC 24 ms
46,336 KB
testcase_13 AC 91 ms
158,080 KB
testcase_14 AC 15 ms
28,160 KB
testcase_15 AC 16 ms
31,104 KB
testcase_16 AC 32 ms
46,848 KB
testcase_17 AC 73 ms
65,408 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 4 ms
6,272 KB
testcase_22 AC 3 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 112 ms
198,912 KB
testcase_25 AC 112 ms
199,040 KB
testcase_26 AC 127 ms
199,012 KB
testcase_27 AC 127 ms
198,912 KB
testcase_28 AC 136 ms
198,972 KB
testcase_29 AC 136 ms
199,028 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 3 ms
5,376 KB
testcase_33 AC 3 ms
5,632 KB
testcase_34 AC 5 ms
7,296 KB
testcase_35 AC 108 ms
199,040 KB
testcase_36 AC 109 ms
199,040 KB
testcase_37 AC 113 ms
199,040 KB
testcase_38 AC 111 ms
199,040 KB
testcase_39 AC 112 ms
199,104 KB
testcase_40 AC 126 ms
199,040 KB
testcase_41 AC 125 ms
198,912 KB
testcase_42 AC 125 ms
198,912 KB
testcase_43 AC 125 ms
199,040 KB
testcase_44 AC 126 ms
198,912 KB
testcase_45 AC 127 ms
199,032 KB
testcase_46 AC 136 ms
199,000 KB
testcase_47 AC 135 ms
198,912 KB
testcase_48 AC 135 ms
199,040 KB
testcase_49 AC 134 ms
199,040 KB
testcase_50 AC 136 ms
199,040 KB
testcase_51 AC 135 ms
199,168 KB
testcase_52 AC 97 ms
180,480 KB
testcase_53 AC 109 ms
198,912 KB
testcase_54 AC 87 ms
199,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
#include<cstring>
#include<iostream>
#include<cmath>
#include<ctime>
#include<string>
#include<algorithm>
#include<vector>
#include<queue>
#include<stack>
#include<map>
using namespace std;
typedef long long LL;
const int MR=5000+5;
int n,K,p[MR],d[MR];
int dp[MR][MR][2];

int main(){
    cin>>n>>K;
    for(int i=1;i<=n;i++) cin>>p[i]>>d[i];
    for(int i=1;i<=n;i++){
        for(int j=i+1;j<=n;j++){
            if(p[i]<p[j]){
                swap(p[i],p[j]);
                swap(d[i],d[j]);
            }
        }
    }
    for(int j=0;j<=K;j++) dp[0][j][1]=-1e9;
    for(int i=1;i<=n;i++){
        for(int j=0;j<=K;j++){
            dp[i][j][0]=max(dp[i-1][j][0],dp[i-1][j][1]+d[i]);
            dp[i][j][1]=dp[i-1][j][1];
            if(j>=p[i]) dp[i][j][1]=max(dp[i-1][j][1],dp[i-1][j-p[i]][0]+d[i]);
        }
    }
    int ans=max(dp[n][K][0],dp[n][K][1]);
    cout<<ans<<endl;
    return 0;
}
0