結果

問題 No.2388 At Least K-Characters
ユーザー Nzt3Nzt3
提出日時 2023-07-22 23:38:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 282 ms / 4,000 ms
コード長 838 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 211,428 KB
実行使用メモリ 124,876 KB
最終ジャッジ日時 2024-07-05 04:18:34
合計ジャッジ時間 8,833 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 237 ms
124,824 KB
testcase_17 AC 231 ms
124,792 KB
testcase_18 AC 241 ms
124,860 KB
testcase_19 AC 245 ms
124,816 KB
testcase_20 AC 255 ms
124,788 KB
testcase_21 AC 282 ms
124,684 KB
testcase_22 AC 277 ms
124,780 KB
testcase_23 AC 275 ms
124,836 KB
testcase_24 AC 263 ms
124,820 KB
testcase_25 AC 243 ms
124,876 KB
testcase_26 AC 266 ms
124,724 KB
testcase_27 AC 261 ms
124,796 KB
testcase_28 AC 270 ms
124,768 KB
testcase_29 AC 253 ms
124,824 KB
testcase_30 AC 249 ms
124,704 KB
testcase_31 AC 246 ms
124,660 KB
testcase_32 AC 241 ms
124,716 KB
testcase_33 AC 240 ms
124,876 KB
testcase_34 AC 268 ms
124,736 KB
testcase_35 AC 273 ms
124,692 KB
testcase_36 AC 266 ms
124,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int mod=998244353;
void ch(ll &a,ll b){
  a=(a+b)%mod;
}
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M,K;
  cin>>N>>M>>K;
  string S;
  cin>>S;
  vector<vector<ll>>dp(M+1,vector<ll>(27));
  set<char>sd;

  ll ans=0;
  for(int i=0;i<M;i++){
    for(int j=0;j<=26;j++){
      ch(dp[i+1][j],dp[i][j]*j);
    }
    for(int j=0;j<26;j++){
      ch(dp[i+1][j+1],dp[i][j]*(26-j));
    }
    if(i<N){
      for(int j='a';j<S[i];j++){
        if(sd.find(j)==sd.end()){
          ch(dp[i+1][sd.size()+1],1);
        }else{
          ch(dp[i+1][sd.size()],1);
        }
      }
      if(sd.size()>=K)++ans;
      sd.insert(S[i]);
    }
  }
  for(int i=0;i<=M;i++){
    for(int j=K;j<=26;j++){
      ch(ans,dp[i][j]);
    }
  }
  cout<<ans<<'\n';
}
0