結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー NoneNone
提出日時 2021-04-29 00:37:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 696 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 79,868 KB
最終ジャッジ日時 2024-07-07 23:58:43
合計ジャッジ時間 17,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,572 KB
testcase_01 AC 31 ms
52,684 KB
testcase_02 AC 42 ms
64,776 KB
testcase_03 AC 34 ms
58,516 KB
testcase_04 AC 31 ms
53,544 KB
testcase_05 AC 30 ms
52,744 KB
testcase_06 AC 45 ms
65,076 KB
testcase_07 AC 32 ms
54,120 KB
testcase_08 AC 39 ms
61,068 KB
testcase_09 AC 74 ms
76,016 KB
testcase_10 AC 72 ms
75,496 KB
testcase_11 AC 69 ms
75,944 KB
testcase_12 AC 187 ms
77,072 KB
testcase_13 AC 477 ms
78,092 KB
testcase_14 AC 156 ms
76,524 KB
testcase_15 AC 113 ms
76,448 KB
testcase_16 AC 140 ms
76,928 KB
testcase_17 AC 154 ms
76,852 KB
testcase_18 AC 34 ms
52,488 KB
testcase_19 AC 32 ms
53,764 KB
testcase_20 AC 31 ms
53,104 KB
testcase_21 AC 73 ms
75,476 KB
testcase_22 AC 71 ms
75,676 KB
testcase_23 AC 71 ms
75,420 KB
testcase_24 AC 520 ms
79,868 KB
testcase_25 AC 580 ms
79,120 KB
testcase_26 AC 562 ms
79,080 KB
testcase_27 AC 566 ms
78,672 KB
testcase_28 AC 401 ms
78,916 KB
testcase_29 AC 407 ms
79,180 KB
testcase_30 AC 32 ms
52,564 KB
testcase_31 AC 31 ms
53,080 KB
testcase_32 AC 61 ms
74,320 KB
testcase_33 AC 69 ms
75,764 KB
testcase_34 AC 71 ms
75,544 KB
testcase_35 AC 650 ms
78,852 KB
testcase_36 AC 607 ms
79,168 KB
testcase_37 AC 677 ms
79,204 KB
testcase_38 AC 600 ms
78,788 KB
testcase_39 AC 696 ms
78,656 KB
testcase_40 AC 603 ms
78,604 KB
testcase_41 AC 670 ms
78,564 KB
testcase_42 AC 645 ms
78,528 KB
testcase_43 AC 564 ms
79,392 KB
testcase_44 AC 564 ms
78,356 KB
testcase_45 AC 555 ms
78,424 KB
testcase_46 AC 386 ms
79,028 KB
testcase_47 AC 403 ms
79,032 KB
testcase_48 AC 395 ms
79,160 KB
testcase_49 AC 448 ms
79,040 KB
testcase_50 AC 424 ms
79,084 KB
testcase_51 AC 435 ms
78,640 KB
testcase_52 AC 324 ms
77,628 KB
testcase_53 AC 352 ms
78,820 KB
testcase_54 AC 182 ms
77,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W=map(int, input().split())

data=[]
for _ in range(N):
    weight,cost=map(int, input().split())
    data.append((weight,cost))

data.sort(key=lambda x:x[0],reverse=True)


dp=[0]*(W+1)
dp2=[0]*(W+1)

for weight, cost in data:
    ndp=dp[:]
    ndp2=dp2[:]
    for w in range(W+1)[::-1]:
        if dp2[w]!=0:
            ndp[w]=max(dp2[w]+cost,ndp[w])
        if w==weight:

            ndp2[w]=max(ndp2[w],cost)
            ndp[w]=max(ndp[w],cost)

        if w>weight and dp[w-weight]!=0:
            ndp2[w]=max(ndp2[w],dp[w-weight]+cost)
            ndp[w]=max(ndp[w],dp[w-weight]+cost)
    dp=ndp
    dp2=ndp2

print(max(max(dp),max(dp2)))
0