結果

問題 No.2388 At Least K-Characters
ユーザー timitimi
提出日時 2024-02-16 19:20:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 799 ms / 4,000 ms
コード長 986 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 78,112 KB
最終ジャッジ日時 2024-09-28 19:36:12
合計ジャッジ時間 17,585 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,964 KB
testcase_01 AC 34 ms
54,220 KB
testcase_02 AC 45 ms
63,072 KB
testcase_03 AC 36 ms
52,888 KB
testcase_04 AC 35 ms
53,292 KB
testcase_05 AC 35 ms
53,256 KB
testcase_06 AC 35 ms
52,948 KB
testcase_07 AC 37 ms
53,824 KB
testcase_08 AC 35 ms
53,708 KB
testcase_09 AC 37 ms
53,076 KB
testcase_10 AC 38 ms
53,048 KB
testcase_11 AC 37 ms
54,528 KB
testcase_12 AC 36 ms
53,616 KB
testcase_13 AC 62 ms
75,176 KB
testcase_14 AC 71 ms
76,908 KB
testcase_15 AC 76 ms
76,884 KB
testcase_16 AC 663 ms
77,528 KB
testcase_17 AC 691 ms
77,280 KB
testcase_18 AC 658 ms
77,384 KB
testcase_19 AC 676 ms
77,588 KB
testcase_20 AC 687 ms
77,500 KB
testcase_21 AC 766 ms
77,276 KB
testcase_22 AC 745 ms
77,528 KB
testcase_23 AC 757 ms
77,528 KB
testcase_24 AC 732 ms
77,336 KB
testcase_25 AC 696 ms
77,408 KB
testcase_26 AC 769 ms
77,288 KB
testcase_27 AC 757 ms
77,288 KB
testcase_28 AC 779 ms
77,252 KB
testcase_29 AC 744 ms
77,408 KB
testcase_30 AC 719 ms
77,396 KB
testcase_31 AC 713 ms
77,648 KB
testcase_32 AC 696 ms
77,424 KB
testcase_33 AC 695 ms
77,688 KB
testcase_34 AC 766 ms
77,460 KB
testcase_35 AC 799 ms
77,768 KB
testcase_36 AC 760 ms
78,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int, input().split())
S=input()
dp=[[0]*2 for i in range(28)]
dp[0][0]=1;T=[0]*26 

ans=0;mod=998244353
for j in range(N):
  ss=S[j]
  ndp=[[0]*2 for _ in range(28)]
  s=ord(ss)-ord('a')
  for i in range(27):
    ndp[i][1]+=dp[i][1]*i
    ndp[i][1]%=mod
    ndp[i+1][1]+=dp[i][1]*(26-i)
    ndp[i+1][1]%=mod
  t=sum(T)
  for i in range(s):
    if T[i]==0:
      ndp[t+1][1]+=dp[t][0]
      ndp[t+1][1]%=mod
    else:
      ndp[t][1]+=dp[t][0]
      ndp[t][1]%=mod
  if T[s]==0:
    ndp[t+1][0]+=dp[t][0]
    ndp[t+1][0]%=mod
  else:
    ndp[t][0]+=dp[t][0]
    ndp[t][0]%=mod
  T[s]=1
  dp=ndp
  for i in range(K,27):
    ans+=dp[i][0]
    ans+=dp[i][1]
    ans%=mod

for _ in range(M-N):
  ndp=[[0]*2 for _ in range(28)]
  for i in range(27):
    ndp[i][1]+=dp[i][1]*i
    ndp[i][1]%=mod
    ndp[i+1][1]+=dp[i][1]*(26-i)
    ndp[i+1][1]%=mod
  dp=ndp 
  for i in range(K,27):
    ans+=dp[i][0]
    ans+=dp[i][1]
    ans%=mod

if sum(T)>=K:
  ans-=1 
  ans%=mod 
print(ans)
  
0