結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー H20H20
提出日時 2022-04-13 13:26:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 945 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-12-23 10:09:08
合計ジャッジ時間 23,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,968 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 63 ms
62,720 KB
testcase_03 AC 49 ms
57,856 KB
testcase_04 AC 46 ms
52,224 KB
testcase_05 AC 44 ms
52,096 KB
testcase_06 AC 61 ms
61,440 KB
testcase_07 AC 44 ms
51,968 KB
testcase_08 AC 55 ms
60,288 KB
testcase_09 AC 113 ms
76,672 KB
testcase_10 AC 105 ms
76,032 KB
testcase_11 AC 101 ms
75,776 KB
testcase_12 AC 275 ms
77,312 KB
testcase_13 AC 714 ms
77,952 KB
testcase_14 AC 200 ms
76,928 KB
testcase_15 AC 171 ms
77,056 KB
testcase_16 AC 227 ms
77,184 KB
testcase_17 AC 246 ms
77,184 KB
testcase_18 AC 44 ms
51,968 KB
testcase_19 AC 44 ms
52,096 KB
testcase_20 AC 45 ms
51,840 KB
testcase_21 AC 100 ms
76,288 KB
testcase_22 AC 87 ms
72,832 KB
testcase_23 AC 102 ms
76,288 KB
testcase_24 AC 889 ms
78,080 KB
testcase_25 AC 940 ms
77,952 KB
testcase_26 AC 769 ms
77,696 KB
testcase_27 AC 769 ms
78,080 KB
testcase_28 AC 621 ms
77,696 KB
testcase_29 AC 592 ms
77,824 KB
testcase_30 AC 42 ms
51,968 KB
testcase_31 AC 44 ms
51,840 KB
testcase_32 AC 92 ms
74,368 KB
testcase_33 AC 101 ms
76,416 KB
testcase_34 AC 100 ms
76,416 KB
testcase_35 AC 923 ms
77,952 KB
testcase_36 AC 945 ms
77,952 KB
testcase_37 AC 808 ms
77,568 KB
testcase_38 AC 808 ms
78,336 KB
testcase_39 AC 825 ms
77,952 KB
testcase_40 AC 748 ms
77,696 KB
testcase_41 AC 800 ms
77,952 KB
testcase_42 AC 727 ms
77,696 KB
testcase_43 AC 727 ms
77,952 KB
testcase_44 AC 732 ms
78,080 KB
testcase_45 AC 866 ms
77,952 KB
testcase_46 AC 604 ms
77,824 KB
testcase_47 AC 625 ms
78,208 KB
testcase_48 AC 590 ms
77,824 KB
testcase_49 AC 592 ms
77,568 KB
testcase_50 AC 626 ms
77,824 KB
testcase_51 AC 584 ms
77,696 KB
testcase_52 AC 398 ms
77,696 KB
testcase_53 AC 440 ms
77,568 KB
testcase_54 AC 315 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
PD = [list(map(int,input().split())) for _ in range(N)]
PD = sorted(PD,reverse=True)
DP = [[-1]*2 for _ in range(K+1)]
DP[0][0]=0
for p,d in PD:
    for i in reversed(range(K+1)):
        if DP[i][0]>=0 and i+p<=K:
            DP[i+p][1] = max(DP[i+p][1],DP[i][0]+d)
        if DP[i][1]>=0:
            DP[i][0] = max(DP[i][0],DP[i][1]+d)
ans = 0
for dp in DP:
    ans = max(ans,max(dp))
print(ans)
0