結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー kkkkkk
提出日時 2024-12-14 04:41:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 1,030 bytes
コンパイル時間 972 ms
コンパイル使用メモリ 83,436 KB
実行使用メモリ 199,296 KB
最終ジャッジ日時 2024-12-14 04:42:06
合計ジャッジ時間 11,209 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 3 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 10 ms
9,216 KB
testcase_10 AC 6 ms
6,820 KB
testcase_11 AC 7 ms
7,424 KB
testcase_12 AC 68 ms
46,336 KB
testcase_13 AC 231 ms
158,208 KB
testcase_14 AC 39 ms
28,288 KB
testcase_15 AC 39 ms
30,976 KB
testcase_16 AC 60 ms
46,848 KB
testcase_17 AC 83 ms
65,408 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 6 ms
6,816 KB
testcase_22 AC 4 ms
6,820 KB
testcase_23 AC 5 ms
6,816 KB
testcase_24 AC 300 ms
199,168 KB
testcase_25 AC 306 ms
199,168 KB
testcase_26 AC 322 ms
199,168 KB
testcase_27 AC 301 ms
199,168 KB
testcase_28 AC 270 ms
199,040 KB
testcase_29 AC 278 ms
199,296 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 4 ms
6,816 KB
testcase_33 AC 5 ms
6,816 KB
testcase_34 AC 9 ms
7,296 KB
testcase_35 AC 305 ms
199,168 KB
testcase_36 AC 290 ms
199,040 KB
testcase_37 AC 324 ms
199,168 KB
testcase_38 AC 294 ms
199,168 KB
testcase_39 AC 297 ms
199,168 KB
testcase_40 AC 298 ms
199,040 KB
testcase_41 AC 291 ms
199,040 KB
testcase_42 AC 340 ms
199,296 KB
testcase_43 AC 303 ms
199,040 KB
testcase_44 AC 301 ms
199,168 KB
testcase_45 AC 293 ms
199,040 KB
testcase_46 AC 303 ms
199,168 KB
testcase_47 AC 270 ms
199,040 KB
testcase_48 AC 277 ms
199,168 KB
testcase_49 AC 276 ms
199,168 KB
testcase_50 AC 272 ms
199,040 KB
testcase_51 AC 277 ms
199,040 KB
testcase_52 AC 261 ms
180,480 KB
testcase_53 AC 298 ms
199,168 KB
testcase_54 AC 243 ms
199,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define REP(i, S, E) for(int i=(S); i<=(E); i++)

int N, K;
int dp[5009][5009][2];
vector<pair<int, int>> pizza;

int main(void){
    
    cin >> N >> K;
    pizza.resize(N+1, {-1, -1});
    
    REP(i, 1, N){
        int p, d;
        cin >> p >> d;
        pizza[i] = make_pair(p, d);
    }
    
    sort(pizza.begin(), pizza.end());
    
    REP(i, 1, N){
        REP(j, 0, K){
            int p = pizza[i].first;
            int d = pizza[i].second;
            
            dp[i][j][0] = max(dp[i][j][0], dp[i-1][j][0]);
            dp[i][j][0] = max(dp[i][j][0], dp[i-1][j][1] + d);
            
            if (p > j){
                dp[i][j][1] = max(dp[i][j][1], dp[i-1][j][1]);
            }else{
                dp[i][j][1] = max(dp[i][j][1], dp[i-1][j][1]);
                dp[i][j][1] = max(dp[i][j][1], dp[i-1][j-p][0] + d);
            }
        }
    }
    
    cout << dp[N][K][1] << endl;
    
    return 0;
    
}
0