結果

問題 No.2388 At Least K-Characters
ユーザー 👑 MizarMizar
提出日時 2023-07-13 01:44:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 4,000 ms
コード長 1,213 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 77,356 KB
最終ジャッジ日時 2024-07-05 03:39:13
合計ジャッジ時間 9,732 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,436 KB
testcase_01 AC 38 ms
53,384 KB
testcase_02 AC 46 ms
61,396 KB
testcase_03 AC 37 ms
52,004 KB
testcase_04 AC 37 ms
53,216 KB
testcase_05 AC 38 ms
52,556 KB
testcase_06 AC 40 ms
52,736 KB
testcase_07 AC 36 ms
53,008 KB
testcase_08 AC 37 ms
52,324 KB
testcase_09 AC 37 ms
52,564 KB
testcase_10 AC 40 ms
53,636 KB
testcase_11 AC 38 ms
52,680 KB
testcase_12 AC 38 ms
53,164 KB
testcase_13 AC 57 ms
66,316 KB
testcase_14 AC 60 ms
68,128 KB
testcase_15 AC 67 ms
68,992 KB
testcase_16 AC 329 ms
76,936 KB
testcase_17 AC 252 ms
76,824 KB
testcase_18 AC 343 ms
77,052 KB
testcase_19 AC 347 ms
76,920 KB
testcase_20 AC 363 ms
77,052 KB
testcase_21 AC 383 ms
77,064 KB
testcase_22 AC 381 ms
77,116 KB
testcase_23 AC 383 ms
77,084 KB
testcase_24 AC 378 ms
77,340 KB
testcase_25 AC 351 ms
76,948 KB
testcase_26 AC 379 ms
77,084 KB
testcase_27 AC 377 ms
77,136 KB
testcase_28 AC 386 ms
76,928 KB
testcase_29 AC 372 ms
76,800 KB
testcase_30 AC 362 ms
77,356 KB
testcase_31 AC 360 ms
76,812 KB
testcase_32 AC 352 ms
76,856 KB
testcase_33 AC 351 ms
77,148 KB
testcase_34 AC 373 ms
77,296 KB
testcase_35 AC 387 ms
77,332 KB
testcase_36 AC 384 ms
76,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

n, m, k = map(int, input().split())
s = input()

MOD = 998244353
KMAX = 26
kbits = 0
result = 0
dp = [0] * KMAX

if len(s) != n or n < 1 or n > m or m > 500000 or k < 1 or k > KMAX:
    sys.exit(1)

for c in s:
    ndp = [0] * KMAX
    ci = ord(c) - ord('a')
    if ci < 0 or ci >= KMAX:
        sys.exit(1)
    for j in range(ci):
        ndp[(kbits | (1 << j)).bit_count() - 1] += 1
    kbits |= (1 << ci)
    if kbits.bit_count() >= k:
        result += 1
    for j in range(1, KMAX):
        ndp[j - 1] += j * dp[j - 1]
        ndp[j] += (KMAX - j) * dp[j - 1]
    ndp[KMAX - 1] += KMAX * dp[KMAX - 1]
    for j in range(KMAX):
        ndp[j] %= MOD
    for j in range(k - 1, KMAX):
        result += ndp[j]
    result %= MOD
    dp = ndp

if kbits.bit_count() >= k:
    result -= 1
    result %= MOD

for _ in range(n, m):
    ndp = [0] * KMAX
    for j in range(1, KMAX):
        ndp[j - 1] += j * dp[j - 1]
        ndp[j] += (KMAX - j) * dp[j - 1]
    ndp[KMAX - 1] += KMAX * dp[KMAX - 1]
    for j in range(KMAX):
        ndp[j] %= MOD
    for j in range(k - 1, KMAX):
        result += ndp[j]
    result %= MOD
    dp = ndp

print(result)
0