結果

問題 No.2943 Sigma String of String Score Problem
ユーザー Today03Today03
提出日時 2024-10-18 23:00:37
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 3,000 ms
コード長 693 bytes
コンパイル時間 3,541 ms
コンパイル使用メモリ 251,300 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-18 23:01:33
合計ジャッジ時間 5,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 145 ms
6,816 KB
testcase_04 AC 6 ms
6,816 KB
testcase_05 AC 67 ms
6,824 KB
testcase_06 AC 6 ms
6,820 KB
testcase_07 AC 18 ms
6,820 KB
testcase_08 AC 115 ms
6,816 KB
testcase_09 AC 62 ms
6,820 KB
testcase_10 AC 17 ms
6,816 KB
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 26 ms
6,820 KB
testcase_13 AC 9 ms
6,816 KB
testcase_14 AC 9 ms
6,816 KB
testcase_15 AC 14 ms
6,824 KB
testcase_16 AC 9 ms
6,824 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 80 ms
6,816 KB
testcase_19 AC 41 ms
6,820 KB
testcase_20 AC 26 ms
6,820 KB
testcase_21 AC 81 ms
6,824 KB
testcase_22 AC 159 ms
6,820 KB
testcase_23 AC 167 ms
6,820 KB
testcase_24 AC 160 ms
6,820 KB
testcase_25 AC 134 ms
6,820 KB
testcase_26 AC 260 ms
6,824 KB
testcase_27 AC 162 ms
6,820 KB
testcase_28 AC 2 ms
6,824 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

#include <atcoder/modint>
using mint = atcoder::modint998244353;

int main() {
    string S, T;
    cin >> S >> T;
    int N = ssize(S), M = ssize(T);

    vector<mint> dp(M + 1), ndp = dp;
    dp[0] = 1;
    for (int i = 0; i < N; i++) {
        for (int j = 0; j <= M; j++) ndp[j] = 0;
        for (int j = 0; j <= M; j++) {
            ndp[j] += dp[j];
            if (S[i] == T[j] && j < M) {
                ndp[j + 1] += dp[j];
            }
        }
        dp.swap(ndp);
    }

    mint ans = dp.back();
    ans *= mint(2).pow(N - M);
    cout << ans.val() << endl;
}
0