結果

問題 No.2943 Sigma String of String Score Problem
ユーザー nouka28nouka28
提出日時 2024-10-18 21:50:16
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 302 ms / 3,000 ms
コード長 689 bytes
コンパイル時間 5,079 ms
コンパイル使用メモリ 312,296 KB
実行使用メモリ 7,620 KB
最終ジャッジ日時 2024-10-18 22:40:22
合計ジャッジ時間 9,198 ms
ジャッジサーバーID
(参考情報)
judge4 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
7,260 KB
testcase_01 AC 7 ms
7,068 KB
testcase_02 AC 8 ms
7,212 KB
testcase_03 AC 249 ms
7,476 KB
testcase_04 AC 15 ms
7,152 KB
testcase_05 AC 117 ms
7,308 KB
testcase_06 AC 13 ms
7,080 KB
testcase_07 AC 32 ms
7,328 KB
testcase_08 AC 206 ms
7,424 KB
testcase_09 AC 105 ms
7,336 KB
testcase_10 AC 34 ms
7,308 KB
testcase_11 AC 13 ms
7,296 KB
testcase_12 AC 51 ms
7,372 KB
testcase_13 AC 21 ms
7,308 KB
testcase_14 AC 17 ms
7,280 KB
testcase_15 AC 23 ms
7,260 KB
testcase_16 AC 17 ms
7,132 KB
testcase_17 AC 11 ms
7,360 KB
testcase_18 AC 141 ms
7,416 KB
testcase_19 AC 75 ms
7,344 KB
testcase_20 AC 51 ms
7,420 KB
testcase_21 AC 143 ms
7,380 KB
testcase_22 AC 276 ms
7,288 KB
testcase_23 AC 278 ms
7,344 KB
testcase_24 AC 278 ms
7,620 KB
testcase_25 AC 249 ms
7,424 KB
testcase_26 AC 302 ms
7,432 KB
testcase_27 AC 282 ms
7,496 KB
testcase_28 AC 8 ms
7,220 KB
testcase_29 AC 8 ms
7,064 KB
testcase_30 AC 8 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

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

#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#define int long long

signed main(){
    string S,T;cin>>S>>T;

    vector<mint> two(1000000);
    two[0]=1;for(int i=1;i<two.size();i++)two[i]=2*two[i-1];

    vector<mint> dp(T.size()+1);

    dp[0]=1;

    for(auto&&e:S){
        vector<mint> ndp(T.size()+1);

        for(int i=0;i<=T.size();i++){
            if(i<T.size()&&e==T[i]){
                ndp[i+1]+=dp[i];
            }
            ndp[i]+=2*dp[i];
        }

        swap(dp,ndp);
    }

    cout<<dp[T.size()].val()<<endl;
}
0