結果

問題 No.2866 yuusaan's Knapsack
ユーザー PNJPNJ
提出日時 2024-09-03 02:20:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 801 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 107,936 KB
最終ジャッジ日時 2024-09-03 02:20:47
合計ジャッジ時間 6,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
75,828 KB
testcase_01 AC 69 ms
72,332 KB
testcase_02 AC 84 ms
77,168 KB
testcase_03 AC 59 ms
65,396 KB
testcase_04 AC 55 ms
64,684 KB
testcase_05 AC 55 ms
64,604 KB
testcase_06 AC 237 ms
106,656 KB
testcase_07 AC 184 ms
100,216 KB
testcase_08 AC 194 ms
104,400 KB
testcase_09 AC 190 ms
102,532 KB
testcase_10 AC 197 ms
103,936 KB
testcase_11 AC 165 ms
95,932 KB
testcase_12 AC 219 ms
101,020 KB
testcase_13 AC 175 ms
97,976 KB
testcase_14 AC 186 ms
101,284 KB
testcase_15 AC 198 ms
104,680 KB
testcase_16 AC 188 ms
98,496 KB
testcase_17 AC 205 ms
103,616 KB
testcase_18 AC 212 ms
95,392 KB
testcase_19 AC 225 ms
107,936 KB
testcase_20 AC 202 ms
100,304 KB
testcase_21 AC 206 ms
102,168 KB
testcase_22 AC 200 ms
100,384 KB
testcase_23 AC 252 ms
106,744 KB
testcase_24 AC 189 ms
99,476 KB
testcase_25 AC 202 ms
103,716 KB
testcase_26 AC 187 ms
106,664 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 1 << 61
mod = 998244353
N,W = map(int,input().split())

dp = [[-inf for w in range(20001)] for n in range(N + 1)]
C = [[0 for c in range(20001)] for n in range(N + 1)]
dp[0][0] = 0
C[0][0] = 1

for i in range(N):
  for w in range(-10000,10001):
    dp[i + 1][w] = dp[i][w]
    C[i + 1][w] = C[i][w]
  v,w = map(int,input().split())
  for ww in range(-10000,10001):
    if -10000 <= w + ww <= 10000:
      if dp[i][ww] + v > dp[i + 1][w + ww]:
        dp[i + 1][w + ww] = dp[i][ww] + v
        C[i + 1][w + ww] = C[i][ww]
      elif dp[i][ww] + v == dp[i + 1][w + ww]:
        C[i + 1][w + ww] = (C[i + 1][w + ww] + C[i][ww]) % mod

V = -inf
for w in range(-10000,W + 1):
  V = max(dp[N][w],V)
ans = 0
for w in range(-10000,W + 1):
  if V == dp[N][w]:
    ans += C[N][w]
  ans %= mod
print(V,ans)
0