結果
問題 | No.2943 Sigma String of String Score Problem |
ユーザー | ococonomy1 |
提出日時 | 2024-10-18 22:17:40 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 2,202 bytes |
コンパイル時間 | 2,363 ms |
コンパイル使用メモリ | 206,904 KB |
実行使用メモリ | 795,300 KB |
最終ジャッジ日時 | 2024-10-18 22:49:25 |
合計ジャッジ時間 | 15,339 ms |
ジャッジサーバーID (参考情報) |
judge / judge8 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | MLE | - |
testcase_04 | WA | - |
testcase_05 | MLE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | MLE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | WA | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
//#pragma GCC target("avx2") //#pragma GCC optimize("O3") //#pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int,int>; using pll = pair<ll,ll>; using pli = pair<ll,int>; #define TEST cerr << "TEST" << endl #define AMARI 998244353 //#define AMARI 1000000007 #define el '\n' #define El '\n' constexpr ll beki(ll a,ll b){ ll ans = 1,temp = a; while(b){ if(b % 2){ ans *= temp; ans %= AMARI; } temp *= temp; temp %= AMARI; b /= 2; } return ans; } #define MULTI_TEST_CASE false void solve(void){ //問題を見たらまず「この問題設定から言えること」をいっぱい言う //一個回答に繋がりそうな解法が見えても、実装や細かい詰めに時間がかかりそうなら別の方針を考えてみる //添え字回りで面倒になりそうなときは楽になる言い換えを実装の前にじっくり考える //ある程度考察しても全然取っ掛かりが見えないときは実験をしてみる //よりシンプルな問題に言い換えられたら、言い換えた先の問題を自然言語ではっきりと書く string s,t; cin >> s >> t; int n = (int)s.size(),m = t.size(); vector<vector<ll>> dp(n,vector<ll>(m,0)); if(s[0] == t[0]){ dp[0][0] = 1; } for(int i = 1; i < n; i++){ for(int j = 0; j < m; j++){ if(s[i] == t[j]){ if(j >= 1){ dp[i][j] += dp[i - 1][j - 1]; } if(s[i - 1] == s[i])dp[i][j] += beki(2,i); } dp[i][j] += dp[i - 1][j] * 2; dp[i][j] %= AMARI; } } /* for(int i = 0; i < n; i++){ for(int j = 0; j < m; j++){ cerr << dp[i][j] << ' '; } cerr << el; } */ cout << dp[n - 1][m - 1] << el; return; } void calc(void){ return; } signed main(void){ cin.tie(nullptr); ios::sync_with_stdio(false); calc(); int t = 1; if(MULTI_TEST_CASE)cin >> t; while(t--){ solve(); } return 0; }