結果

問題 No.2429 Happiest Tabehodai Ways
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-08-19 03:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 973 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-06-12 08:03:13
合計ジャッジ時間 3,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
62,208 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 42 ms
51,712 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 43 ms
58,624 KB
testcase_10 AC 42 ms
57,856 KB
testcase_11 AC 47 ms
60,928 KB
testcase_12 AC 51 ms
62,592 KB
testcase_13 AC 58 ms
65,152 KB
testcase_14 AC 63 ms
64,640 KB
testcase_15 AC 89 ms
74,624 KB
testcase_16 AC 48 ms
61,056 KB
testcase_17 AC 43 ms
58,624 KB
testcase_18 AC 62 ms
66,816 KB
testcase_19 AC 69 ms
68,480 KB
testcase_20 AC 59 ms
65,536 KB
testcase_21 AC 39 ms
52,480 KB
testcase_22 AC 38 ms
51,840 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 47 ms
60,288 KB
testcase_26 AC 48 ms
60,032 KB
testcase_27 AC 43 ms
57,856 KB
testcase_28 AC 40 ms
52,096 KB
testcase_29 AC 59 ms
63,872 KB
testcase_30 AC 62 ms
66,816 KB
testcase_31 AC 47 ms
59,904 KB
testcase_32 AC 49 ms
61,440 KB
testcase_33 AC 72 ms
69,120 KB
testcase_34 AC 61 ms
66,304 KB
testcase_35 AC 52 ms
62,208 KB
testcase_36 AC 64 ms
64,600 KB
testcase_37 AC 51 ms
60,672 KB
testcase_38 AC 52 ms
60,928 KB
testcase_39 AC 42 ms
52,864 KB
testcase_40 AC 66 ms
63,104 KB
testcase_41 AC 54 ms
63,360 KB
testcase_42 AC 75 ms
64,896 KB
testcase_43 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

ナップザック

dp[]

"""

import sys
from sys import stdin

N,K = map(int,stdin.readline().split())

C = list(map(int,stdin.readline().split()))
D = list(map(int,stdin.readline().split()))

assert 1 <= N <= 1000
assert 1 <= K <= 1000
for i in range(N):
    assert 1 <= C[i] <= 1000
    assert 1 <= D[i] <= 1000
 
mod = 998244353

dpmax = [float("-inf")] * (K+1)
dpcnt = [0] * (K+1)

dpmax[0] = 0
dpcnt[0] = 1

for csum in range(K+1):

    for c,d in zip(C,D):

        if csum+c <= K:

            nexc = csum+c
            nexd = dpmax[csum] + d
            
            if nexd > dpmax[nexc]:
                dpmax[nexc] = nexd
                dpcnt[nexc] = 0

            if nexd == dpmax[nexc]:
                dpcnt[nexc] += dpcnt[csum]
                dpcnt[nexc] %= mod

ans = [0,0]

for i in range(K,-1,-1):

    if dpmax[i] > ans[0]:
        ans = [dpmax[i],0]

    if dpmax[i] == ans[0]:
        ans[1] += dpcnt[i]

print (ans[0])
print (ans[1] % mod)
0