結果

問題 No.2943 Sigma String of String Score Problem
ユーザー t98slidert98slider
提出日時 2024-10-24 00:00:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 912 bytes
コンパイル時間 4,921 ms
コンパイル使用メモリ 267,592 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-10-24 00:00:55
合計ジャッジ時間 9,483 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 WA -
testcase_04 AC 8 ms
6,820 KB
testcase_05 WA -
testcase_06 AC 6 ms
6,820 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 79 ms
6,820 KB
testcase_10 WA -
testcase_11 AC 4 ms
6,820 KB
testcase_12 AC 32 ms
6,816 KB
testcase_13 AC 11 ms
6,820 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 178 ms
6,820 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    string s, t;
    cin >> s >> t;
    int n = s.size(), m = t.size();
    vector<vector<bool>> tb(26, vector<bool>(m));
    for(int i = 0; i < t.size(); i++){
        tb[t[i] - 'a'][i] = true;
    }
    vector<mint> dp(t.size()), pow2(n);
    pow2[0] = 1;
    for(int i = 0; i + 1 < n; i++) pow2[i + 1] = pow2[i] + pow2[i];
    dp[0] = 1;
    mint ans;
    for(int i = 0; i < s.size(); i++){
        int p = s[i] - 'a';
        mint add;
        for(int j = m - 1; j >= 0; j--){
            if(tb[p][j]){
                if(j == m - 1) add = dp[j];
                else dp[j + 1] += dp[j];
            }
            dp[j] += dp[j];
        }
        dp[0] += add;
        ans += add * pow2[n - 1 - i];
    }
    cout << ans.val() << '\n';
}
0