結果

問題 No.2943 Sigma String of String Score Problem
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-19 21:21:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 347 ms / 3,000 ms
コード長 866 bytes
コンパイル時間 3,078 ms
コンパイル使用メモリ 205,044 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-19 21:21:51
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 197 ms
6,820 KB
testcase_04 AC 8 ms
6,820 KB
testcase_05 AC 87 ms
6,820 KB
testcase_06 AC 6 ms
6,816 KB
testcase_07 AC 20 ms
6,816 KB
testcase_08 AC 152 ms
6,820 KB
testcase_09 AC 82 ms
6,820 KB
testcase_10 AC 22 ms
6,820 KB
testcase_11 AC 5 ms
6,820 KB
testcase_12 AC 35 ms
6,820 KB
testcase_13 AC 11 ms
6,816 KB
testcase_14 AC 12 ms
6,816 KB
testcase_15 AC 20 ms
6,824 KB
testcase_16 AC 13 ms
6,816 KB
testcase_17 AC 4 ms
6,820 KB
testcase_18 AC 108 ms
6,820 KB
testcase_19 AC 56 ms
6,820 KB
testcase_20 AC 36 ms
6,820 KB
testcase_21 AC 110 ms
6,816 KB
testcase_22 AC 238 ms
6,820 KB
testcase_23 AC 219 ms
6,820 KB
testcase_24 AC 228 ms
6,820 KB
testcase_25 AC 202 ms
6,816 KB
testcase_26 AC 347 ms
6,816 KB
testcase_27 AC 243 ms
6,820 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 1 ms
6,824 KB
testcase_30 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>

using namespace std;
using ll = long long;
using namespace atcoder;
using mint=modint998244353;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    /*
       dp(i, j) = Sのi文字目まででTのj文字目までが完成するパターン数
    */

    string S, T;
    int N, M;
    cin >> S >> T;
    N = S.size(); M = T.size();
    vector<mint> dp(M+1);
    dp[0] = 1;
    
    for (int i=1; i<=N; i++){
        vector<mint> pd(M+1);
        for (int j=0; j<=M; j++){
            if (j>i) break;
            //Sがi文字目を含む
            if (j>=1 && S[i-1] == T[j-1]) pd[j] += dp[j-1];
            pd[j] += dp[j];
            //Sがi文字目を含まない
            pd[j] += dp[j];
        }
        swap(dp, pd);
    }

    cout << dp[M].val() << endl;

    return 0;
}
0