結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー roarisroaris
提出日時 2019-12-14 23:51:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,284 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 78,956 KB
最終ジャッジ日時 2024-06-28 03:28:44
合計ジャッジ時間 30,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,472 KB
testcase_01 AC 38 ms
52,540 KB
testcase_02 AC 55 ms
65,556 KB
testcase_03 AC 45 ms
60,680 KB
testcase_04 AC 39 ms
53,452 KB
testcase_05 AC 39 ms
53,236 KB
testcase_06 AC 52 ms
63,596 KB
testcase_07 AC 39 ms
52,884 KB
testcase_08 AC 50 ms
63,256 KB
testcase_09 AC 99 ms
73,804 KB
testcase_10 AC 85 ms
73,928 KB
testcase_11 AC 86 ms
71,648 KB
testcase_12 AC 290 ms
77,992 KB
testcase_13 AC 728 ms
78,288 KB
testcase_14 AC 194 ms
77,000 KB
testcase_15 AC 191 ms
76,560 KB
testcase_16 AC 288 ms
76,776 KB
testcase_17 AC 279 ms
77,596 KB
testcase_18 AC 40 ms
53,408 KB
testcase_19 AC 39 ms
53,396 KB
testcase_20 AC 40 ms
53,208 KB
testcase_21 AC 80 ms
72,796 KB
testcase_22 AC 75 ms
72,356 KB
testcase_23 AC 76 ms
72,248 KB
testcase_24 AC 951 ms
78,428 KB
testcase_25 AC 1,071 ms
78,488 KB
testcase_26 AC 1,209 ms
78,352 KB
testcase_27 AC 1,223 ms
78,732 KB
testcase_28 AC 874 ms
78,580 KB
testcase_29 AC 871 ms
78,404 KB
testcase_30 AC 40 ms
52,376 KB
testcase_31 AC 39 ms
53,500 KB
testcase_32 AC 74 ms
70,984 KB
testcase_33 AC 81 ms
72,900 KB
testcase_34 AC 89 ms
74,996 KB
testcase_35 AC 840 ms
78,476 KB
testcase_36 AC 853 ms
78,656 KB
testcase_37 AC 830 ms
78,264 KB
testcase_38 AC 842 ms
78,472 KB
testcase_39 AC 842 ms
78,492 KB
testcase_40 AC 874 ms
78,956 KB
testcase_41 AC 1,284 ms
78,484 KB
testcase_42 AC 1,265 ms
78,420 KB
testcase_43 AC 858 ms
78,412 KB
testcase_44 AC 1,254 ms
78,544 KB
testcase_45 AC 839 ms
78,428 KB
testcase_46 AC 889 ms
78,320 KB
testcase_47 AC 862 ms
78,544 KB
testcase_48 AC 855 ms
78,500 KB
testcase_49 AC 847 ms
78,580 KB
testcase_50 AC 851 ms
78,368 KB
testcase_51 AC 847 ms
78,164 KB
testcase_52 AC 691 ms
77,760 KB
testcase_53 AC 837 ms
77,704 KB
testcase_54 AC 1,007 ms
77,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
PD = [tuple(map(int, input().split())) for _ in range(N)]
PD.sort(key=lambda k: k[0], reverse=True)
dp = [[[-10**18]*2 for _ in range(K+1)] for _ in range(2)]
dp[0][0][0] = 0

for i in range(N):
    Pi, Di = PD[i]
    
    for j in range(K+1):
        dp[(i+1)&1][j][0] = max(dp[i&1][j][0], dp[i&1][j][1]+Di)
        
        if j-Pi>=0:
            dp[(i+1)&1][j][1] = max(dp[i&1][j][1], dp[i&1][j-Pi][0]+Di)
        else:
            dp[(i+1)&1][j][1] = dp[i&1][j][1]

ans = 0

for i in range(K+1):
    for j in range(2):
        ans = max(ans, dp[N&1][i][j])
    
print(ans)
0