結果

問題 No.2388 At Least K-Characters
ユーザー 👑 seekworserseekworser
提出日時 2023-07-17 22:37:16
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 183 ms / 4,000 ms
コード長 1,242 bytes
コンパイル時間 2,425 ms
コンパイル使用メモリ 209,884 KB
実行使用メモリ 78,004 KB
最終ジャッジ日時 2024-07-05 03:33:58
合計ジャッジ時間 7,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 168 ms
77,872 KB
testcase_17 AC 175 ms
77,876 KB
testcase_18 AC 172 ms
77,872 KB
testcase_19 AC 170 ms
77,876 KB
testcase_20 AC 176 ms
78,004 KB
testcase_21 AC 183 ms
77,968 KB
testcase_22 AC 181 ms
77,872 KB
testcase_23 AC 183 ms
77,744 KB
testcase_24 AC 176 ms
77,872 KB
testcase_25 AC 171 ms
77,956 KB
testcase_26 AC 181 ms
77,872 KB
testcase_27 AC 177 ms
78,004 KB
testcase_28 AC 182 ms
77,868 KB
testcase_29 AC 178 ms
77,876 KB
testcase_30 AC 175 ms
77,872 KB
testcase_31 AC 173 ms
77,872 KB
testcase_32 AC 169 ms
77,868 KB
testcase_33 AC 169 ms
77,876 KB
testcase_34 AC 178 ms
77,872 KB
testcase_35 AC 182 ms
77,904 KB
testcase_36 AC 177 ms
77,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// line 1 "answer.cpp"
#include <bits/stdc++.h>
#include <atcoder/modint.hpp>
using namespace std;
using mint = atcoder::modint998244353;

int main() {
    int n, m, k;
    string s;
    cin >> n >> m >> k >> s;
    vector dp(m+1, vector<mint>(27, 0));
    vector<bool> seen(26, 0);
    int used = 0;
    dp[0][0] = 1;
    for (int i=0; i<m; i++) {
        for (int j=0; j<=26; j++) {
            mint dpi = dp[i][j];
            if (i < n && j == used) {
                int u = 0;
                for(int l=0; l < s[i] - 'a'; l++) {
                    if (seen[l]) u++;
                }
                dp[i+1][j] += u;
                if (j+1 <= 26) dp[i+1][j+1] += (s[i] - 'a' - u);
                if (seen[s[i] - 'a']) dp[i+1][j] += 1;
                else dp[i+1][j+1] += 1;
                dpi -= 1;
            }
            if (i == n && j == used) dpi -= 1;
            dp[i+1][j] += dpi * j;
            if (j+1 <= 26) dp[i+1][j+1] += dpi * (26 - j);
        }
        if (i < n && !seen[s[i] - 'a']) {
            used++;
            seen[s[i] - 'a'] = true;
        }
    }
    mint ans = 0;
    for (int i=1; i<=m; i++) for (int j=k; j<=26; j++) ans += dp[i][j];
    if (used >= k) ans -= 1;
    cout << ans.val() << '\n';
}
0