結果

問題 No.2388 At Least K-Characters
ユーザー FromBooskaFromBooska
提出日時 2023-07-26 18:38:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 883 ms / 4,000 ms
コード長 1,449 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 220,260 KB
最終ジャッジ日時 2024-07-05 04:23:15
合計ジャッジ時間 17,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,600 KB
testcase_01 AC 39 ms
52,744 KB
testcase_02 AC 50 ms
61,964 KB
testcase_03 AC 38 ms
52,888 KB
testcase_04 AC 38 ms
52,744 KB
testcase_05 AC 38 ms
53,352 KB
testcase_06 AC 38 ms
53,132 KB
testcase_07 AC 38 ms
52,756 KB
testcase_08 AC 39 ms
53,120 KB
testcase_09 AC 39 ms
52,892 KB
testcase_10 AC 40 ms
53,760 KB
testcase_11 AC 40 ms
52,712 KB
testcase_12 AC 39 ms
52,824 KB
testcase_13 AC 59 ms
66,204 KB
testcase_14 AC 63 ms
67,596 KB
testcase_15 AC 66 ms
69,444 KB
testcase_16 AC 629 ms
220,144 KB
testcase_17 AC 842 ms
220,124 KB
testcase_18 AC 578 ms
219,992 KB
testcase_19 AC 581 ms
219,992 KB
testcase_20 AC 695 ms
219,888 KB
testcase_21 AC 883 ms
219,936 KB
testcase_22 AC 859 ms
220,000 KB
testcase_23 AC 879 ms
220,032 KB
testcase_24 AC 764 ms
220,128 KB
testcase_25 AC 581 ms
219,916 KB
testcase_26 AC 815 ms
220,028 KB
testcase_27 AC 779 ms
219,892 KB
testcase_28 AC 851 ms
220,024 KB
testcase_29 AC 727 ms
220,008 KB
testcase_30 AC 712 ms
220,260 KB
testcase_31 AC 633 ms
220,024 KB
testcase_32 AC 584 ms
219,896 KB
testcase_33 AC 584 ms
220,124 KB
testcase_34 AC 829 ms
220,148 KB
testcase_35 AC 871 ms
219,896 KB
testcase_36 AC 795 ms
219,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 自力できず公式解説見る
# dp[i文字目までで][j種類の文字を使ったパターン数
# 遷移は、dp[i-1][j]で既に出た文字を使う場合がdp[i-1][j]*j
# もう1つが、dp[i-1][j-1]から出ていない文字が出る場合がdp[i-1][j-1]*(26-j)
# dp[i][j] = dp[i-1][j]*j + dp[i-1][j-1]*(26-j)
# 解説見ても自力実装できず人のを見る、ということは自力を超えてる

N, M, K = map(int,input().split())
S = input()
current = 0
count = [0]*26
mod = 998244353

alphabets = 'abcdefghijklmnopqrstuvwxyz'
dic = {}
for i in range(26):
    dic[alphabets[i]] = i

dp = [[0]*27 for _ in range(M+1)]

ans = 0
for i in range(N):
    s = dic[S[i]]
    for j in range(s):
        if count[j] == 0:
            dp[i+1][current+1] += 1
        else:
            dp[i+1][current] += 1
    for j in range(27):
        dp[i+1][j] += dp[i][j]*j
        if 0 < j < 26:
            dp[i+1][j+1] += dp[i][j]*(26-j)
    for j in range(27):
        dp[i+1][j] %= mod
    if count[s] == 0:
        current += 1
        count[s] +=  1
    if current >= K:
        ans += 1

for i in range(N, M):
    for j in range(1,27):
        dp[i+1][j] += dp[i][j] * j
        if 0 < j < 26:
            dp[i+1][j+1] += dp[i][j]*(26-j)
    for j in range(27):
        dp[i+1][j] %= mod

for i in range(K, 27):
    for j in range(M+1):
        ans += dp[j][i]
        ans %= mod
if current >= K:
    ans -= 1
    ans %= mod
print(ans)
0