結果

問題 No.2866 yuusaan's Knapsack
ユーザー PNJPNJ
提出日時 2024-09-03 02:22:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,524 KB
最終ジャッジ日時 2024-09-26 14:39:34
合計ジャッジ時間 6,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
68,992 KB
testcase_01 AC 87 ms
70,656 KB
testcase_02 AC 93 ms
72,064 KB
testcase_03 AC 76 ms
64,640 KB
testcase_04 AC 70 ms
64,256 KB
testcase_05 AC 70 ms
64,256 KB
testcase_06 AC 220 ms
105,928 KB
testcase_07 AC 201 ms
100,000 KB
testcase_08 AC 211 ms
104,284 KB
testcase_09 AC 206 ms
102,028 KB
testcase_10 AC 209 ms
103,852 KB
testcase_11 AC 180 ms
95,716 KB
testcase_12 AC 205 ms
100,696 KB
testcase_13 AC 193 ms
97,732 KB
testcase_14 AC 203 ms
100,808 KB
testcase_15 AC 216 ms
104,604 KB
testcase_16 AC 202 ms
97,716 KB
testcase_17 AC 230 ms
103,492 KB
testcase_18 AC 197 ms
94,984 KB
testcase_19 AC 242 ms
107,524 KB
testcase_20 AC 225 ms
100,464 KB
testcase_21 AC 228 ms
101,724 KB
testcase_22 AC 214 ms
99,580 KB
testcase_23 AC 240 ms
105,896 KB
testcase_24 AC 201 ms
99,212 KB
testcase_25 AC 221 ms
102,868 KB
testcase_26 AC 207 ms
103,552 KB
testcase_27 AC 96 ms
72,832 KB
testcase_28 AC 219 ms
101,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inf = 1 << 61
mod = 998244353
N,W = map(int,input().split())
B = []
for i in range(N):
  v,w = map(int,input().split())
  B.append((w,v))
B.sort()

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]
  w,v = B[i]
  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