結果

問題 No.2378 Cards and Subsequences
ユーザー yamate11yamate11
提出日時 2023-06-13 20:59:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 930 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 95,920 KB
最終ジャッジ日時 2024-07-21 16:26:11
合計ジャッジ時間 13,130 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
61,144 KB
testcase_01 AC 39 ms
52,512 KB
testcase_02 AC 39 ms
53,340 KB
testcase_03 AC 39 ms
52,924 KB
testcase_04 AC 57 ms
65,056 KB
testcase_05 AC 60 ms
65,964 KB
testcase_06 AC 404 ms
78,940 KB
testcase_07 AC 699 ms
79,864 KB
testcase_08 AC 505 ms
78,768 KB
testcase_09 AC 1,871 ms
83,792 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import sys

def debug(*msg):
    print(*msg, file=sys.stderr)

def intdec(x):
    return int(x) - 1

N, M, K = map(int, input().strip().split())
S = list(map(intdec, input().strip().split()))
A = list(map(int, input().strip().split()))
B = list(map(int, input().strip().split()))

rec = [-1 for _ in range(M + 1)]
prev = [0 for _ in range(N)]
for i in range(N):
    prev[i] = rec[S[i]]
    rec[S[i]] = i
debug(prev)

primeB = 998244353

acc = [[0 for k in range(K + 1)] for n in range(N + 1)]
acc[0][0] = 1
for i in range(N):
    acc[i + 1] = acc[i][:]
    for k in range(K + 1):
        exc = 0 if prev[i] < 0 else acc[prev[i]][k]
        v = (acc[i][k] - exc) % primeB

        def op(a):
            debug("  called", a, v)
            if a <= K:
                acc[i + 1][a] = (acc[i + 1][a] + v) % primeB
        
        op(k + A[S[i]])
        op(k + B[S[i]])
    debug(acc[i + 1])

print(acc[N][K])
0