結果

問題 No.2215 Slide Subset Sum
ユーザー tktk_snsntktk_snsn
提出日時 2023-02-11 02:44:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,197 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 448,788 KB
最終ジャッジ日時 2024-07-07 19:35:31
合計ジャッジ時間 31,090 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 32 ms
53,240 KB
testcase_06 AC 36 ms
59,444 KB
testcase_07 AC 32 ms
53,040 KB
testcase_08 WA -
testcase_09 AC 32 ms
52,828 KB
testcase_10 AC 30 ms
53,224 KB
testcase_11 AC 30 ms
52,424 KB
testcase_12 AC 43 ms
65,148 KB
testcase_13 WA -
testcase_14 AC 43 ms
64,404 KB
testcase_15 AC 34 ms
58,576 KB
testcase_16 AC 47 ms
66,964 KB
testcase_17 AC 1,445 ms
260,948 KB
testcase_18 AC 1,300 ms
235,152 KB
testcase_19 WA -
testcase_20 AC 1,165 ms
271,008 KB
testcase_21 AC 1,040 ms
137,668 KB
testcase_22 AC 1,251 ms
288,896 KB
testcase_23 AC 1,697 ms
427,420 KB
testcase_24 AC 2,176 ms
429,692 KB
testcase_25 AC 1,596 ms
390,992 KB
testcase_26 AC 1,366 ms
289,436 KB
testcase_27 WA -
testcase_28 AC 129 ms
92,708 KB
testcase_29 AC 131 ms
84,564 KB
testcase_30 WA -
testcase_31 AC 633 ms
202,304 KB
testcase_32 AC 157 ms
81,796 KB
testcase_33 AC 723 ms
118,960 KB
testcase_34 AC 606 ms
180,720 KB
testcase_35 WA -
testcase_36 AC 334 ms
131,844 KB
testcase_37 AC 1,200 ms
448,788 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 1,184 ms
273,256 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 1,493 ms
366,376 KB
testcase_46 AC 2,000 ms
366,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
tmp = [0] * 100


def merge(X, Y, K):
    res = X[0] * Y[0] - 1
    for i in range(1, K):
        res += X[i] * Y[K - i]
        res %= mod
    return res


def calc_dp(dp, K, A):
    for i in range(K):
        dp[0][i] = 0
    dp[0][0] = 1
    dp[0][A[0]] = 1
    for i, a in enumerate(A[1:], 1):
        for j in range(K):
            dp[i][j] = dp[i-1][j] + dp[i-1][j-a]
            if dp[i][j] >= mod:
                dp[i][j] -= mod


def main():
    N, M, K = map(int, input().split())
    block = (N + M - 1) // M
    A = [0] * (block * M + M)
    for i, a in enumerate(map(int, input().split())):
        A[i] = a

    dpL = [[0] * K for _ in range(M)]
    dpR = [[0] * K for _ in range(M)]

    answer = []
    for i in range(block):
        L = [A[j] for j in range(M*i, M*i+M)][::-1]
        R = [A[j] for j in range(M*i+M, M*i+2*M)]

        # dpL = list(calc_dp(K, L))[::-1]
        # dpR = list(calc_dp(K, R))
        calc_dp(dpL, K, L)
        dpL.reverse()
        calc_dp(dpR, K, R)

        answer.append((dpL[0][0] - 1) % mod)
        for j in range(M - 1):
            answer.append(merge(dpL[j+1], dpR[j], K))

    print(*answer[:N - M + 1], sep="\n")


main()
0