結果

問題 No.2866 yuusaan's Knapsack
ユーザー titiatitia
提出日時 2024-09-05 02:25:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 522 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 248,064 KB
最終ジャッジ日時 2024-09-26 14:39:48
合計ジャッジ時間 10,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
91,392 KB
testcase_01 AC 80 ms
89,268 KB
testcase_02 AC 94 ms
91,672 KB
testcase_03 AC 54 ms
70,272 KB
testcase_04 AC 53 ms
70,144 KB
testcase_05 AC 56 ms
70,528 KB
testcase_06 AC 485 ms
243,880 KB
testcase_07 AC 400 ms
209,152 KB
testcase_08 AC 472 ms
236,704 KB
testcase_09 AC 437 ms
230,528 KB
testcase_10 AC 448 ms
236,260 KB
testcase_11 AC 339 ms
190,080 KB
testcase_12 AC 422 ms
221,696 KB
testcase_13 AC 360 ms
201,148 KB
testcase_14 AC 423 ms
220,584 KB
testcase_15 AC 448 ms
238,208 KB
testcase_16 AC 412 ms
202,496 KB
testcase_17 AC 448 ms
226,980 KB
testcase_18 AC 339 ms
184,268 KB
testcase_19 AC 494 ms
246,320 KB
testcase_20 AC 428 ms
209,664 KB
testcase_21 AC 430 ms
221,056 KB
testcase_22 AC 396 ms
210,332 KB
testcase_23 AC 522 ms
248,064 KB
testcase_24 AC 383 ms
209,644 KB
testcase_25 AC 453 ms
228,360 KB
testcase_26 AC 472 ms
243,632 KB
testcase_27 AC 90 ms
90,880 KB
testcase_28 AC 429 ms
216,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

mod=998244353

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

DP=[[-1<<30,-1<<30] for i in range(50010)]
DP[10010]=[0,1]

for i in range(N):
    v,w=map(int,input().split())
    NDP=[[-1<<30,-1<<30] for i in range(50010)]
    for j in range(50010):
        NDP[j][0],NDP[j][1]=DP[j][0],DP[j][1]

    for j in range(50010):
        if DP[j][1]<0:
            continue
        k,c=DP[j]

        v2=k+v

        if j+w<50010:
            if NDP[j+w][0]>v2:
                pass
            elif NDP[j+w][0]==v2:
                NDP[j+w][1]+=c
            else:
                NDP[j+w]=[v2,c]
    DP=NDP

    #print(DP[10010:10015])


#print(max(DP))

MAX=max(DP[:W+10010+1])[0]

ANS=0
for i in range(W+10010+1):
    if DP[i][0]==MAX:
        ANS+=DP[i][1]

print(MAX,ANS%mod)
                

0