結果

問題 No.2866 yuusaan's Knapsack
ユーザー tkykwtnbtkykwtnb
提出日時 2024-08-30 23:19:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 701 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 487,272 KB
最終ジャッジ日時 2024-08-30 23:19:24
合計ジャッジ時間 4,470 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,288 KB
testcase_01 AC 40 ms
53,936 KB
testcase_02 AC 40 ms
54,428 KB
testcase_03 AC 40 ms
55,212 KB
testcase_04 AC 39 ms
54,668 KB
testcase_05 AC 39 ms
53,812 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,W=map(int,input().split())
vs=[]
ws=[]
for _ in range(N):
    v,w=map(int,input().split())
    vs.append(v)
    ws.append(w+10000)
from collections import defaultdict
dp=[defaultdict(int) for _ in range(2)]
j=0
dp[j][(0,0)]=1
for i in range(N):
    dp[1-j].clear()
    for (v,w),c in dp[j].items():
        if w==10001:continue
        dp[1-j][(v,w)]+=c
        dp[1-j][(v,w)]%=998244353
        dp[1-j][(v+vs[i],min(w+ws[i]-10000,10001))]+=c
        dp[1-j][(v+vs[i],min(w+ws[i]-10000,10001))]%=998244353
    j=1-j
val_cnt=defaultdict(int)
for (v,w),c in dp[j].items():
    if w<=W:
        val_cnt[v]+=c
        val_cnt[v]%=998244353
ans=sorted(val_cnt.items(), key=lambda x:-x[0])
print(*ans[0])
0