結果

問題 No.2866 yuusaan's Knapsack
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-30 22:27:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 77,364 KB
最終ジャッジ日時 2024-08-30 22:27:29
合計ジャッジ時間 4,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
63,800 KB
testcase_01 AC 47 ms
62,224 KB
testcase_02 AC 49 ms
64,560 KB
testcase_03 AC 43 ms
60,400 KB
testcase_04 AC 43 ms
61,840 KB
testcase_05 AC 44 ms
59,384 KB
testcase_06 WA -
testcase_07 AC 109 ms
76,288 KB
testcase_08 WA -
testcase_09 AC 118 ms
76,580 KB
testcase_10 WA -
testcase_11 AC 108 ms
76,332 KB
testcase_12 AC 112 ms
76,376 KB
testcase_13 AC 110 ms
76,224 KB
testcase_14 AC 113 ms
76,452 KB
testcase_15 WA -
testcase_16 AC 126 ms
76,512 KB
testcase_17 AC 136 ms
77,040 KB
testcase_18 AC 113 ms
77,116 KB
testcase_19 AC 132 ms
77,052 KB
testcase_20 WA -
testcase_21 AC 124 ms
77,084 KB
testcase_22 AC 119 ms
76,864 KB
testcase_23 AC 138 ms
77,100 KB
testcase_24 AC 124 ms
76,828 KB
testcase_25 AC 132 ms
77,364 KB
testcase_26 AC 80 ms
76,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,W=map(int,input().split())
X=10**20
M=998244353
L=10000
q1=[0]*(L*2+1)
q2=[0]*(L*2+1)
q3=[-X]*(L*2+1)
q1[0]=1
q2[0]=1
q3[0]=0
p=0
for _ in range(n):
  v,w=map(int,input().split())
  if w==0:
    p+=max(v,0)
    continue
  for i in [range(-L,L+1),reversed(range(-L,L+1))][w>0]:
    if q1[i]:
      q1[i+w]=1
      if q3[i+w]<q3[i]+v:
        q2[i+w]=1
        q3[i+w]=q3[i]+v
      elif q3[i+w]==q3[i]+v:
        q2[i+w]+=q2[i]
        q2[i+w]%=M
V=-X
for i in range(-L,W+1):
  if q1[i]:
    V=max(V,q3[i])
c=0
for i in range(-L,W+1):
  if q1[i] and q3[i]==V:
    c+=q2[i]
c%=M
print(V+p,c)
0