結果

問題 No.2866 yuusaan's Knapsack
ユーザー tassei903tassei903
提出日時 2024-08-30 21:30:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,334 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 400,352 KB
最終ジャッジ日時 2024-08-30 21:30:52
合計ジャッジ時間 5,030 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 234 ms
242,620 KB
testcase_01 AC 122 ms
155,800 KB
testcase_02 AC 358 ms
234,644 KB
testcase_03 AC 86 ms
122,884 KB
testcase_04 AC 94 ms
122,776 KB
testcase_05 AC 85 ms
122,896 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 #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n, W = na()
v,w = zip(*[na() for _ in range(n)])
m = 10000
M = 2 * 10 ** 6
inf = 10**18
mod = 998244353
dp = [-inf] * (M + 1)
dp[m] = 0
dpcnt = [0] * (M + 1)
dpcnt[m] = 1

for i in range(n):
    ndp = [-inf] * (M + 1)
    ndpcnt = [0] * (M + 1)
    dp, ndp = ndp, dp
    dpcnt, ndpcnt = ndpcnt, dpcnt
    for j in range(M+1):
        if 0 <= j + w[i] <= M:
            if dp[j+w[i]] < ndp[j] + v[i]:
                dp[j+w[i]] = ndp[j] + v[i]
                dpcnt[j+w[i]] = ndpcnt[j]
            elif dp[j+w[i]] == ndp[j] + v[i]:
                dpcnt[j+w[i]] += ndpcnt[j]
                dpcnt[j+w[i]] %= mod
        if dp[j] < ndp[j]:
            dp[j] = ndp[j]
            dpcnt[j] = ndpcnt[j]
        elif dp[j] == ndp[j]:
            dpcnt[j] += ndpcnt[j]
            dpcnt[j] %= mod
    #print(dp)
    #print(dpcnt)

ans = max(dp[:m + W + 1])
ans_cnt = 0
for i in range(m + W + 1):
    if dp[i] == ans:
        ans_cnt += dpcnt[i]
        ans_cnt %= mod

print(ans, ans_cnt)
0