結果

問題 No.2419 MMA文字列2
ユーザー throughthrough
提出日時 2023-08-12 14:14:11
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 611 ms / 2,000 ms
コード長 1,156 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 207,600 KB
実行使用メモリ 389,376 KB
最終ジャッジ日時 2024-11-19 18:00:33
合計ジャッジ時間 10,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
using T = tuple<ll, ll, ll>;
// #include <atcoder/all>
// using namespace atcoder;
// using mint = modint1000000007;
#define rep(i, n) for(ll i = 0; i < n; i++)

int main() {
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
    
    string s; cin >> s;
    vector dp(s.size()+1,vector<vector<ll>>(27,vector<ll>(4,0)));
    ll ans = 0;
    dp[0][0][0] = 1;
    rep(i,s.size()) {
        rep(j,27) {
            rep(k,4) {
                dp[i+1][j][k] += dp[i][j][k];
                if( k == 0 ) {
                    dp[i+1][s[i]-'A'+1][k+1] += dp[i][j][k];
                }
                else if( k == 2 ){
                    if( s[i]-'A'+1 != j ) {
                        dp[i+1][s[i]-'A'+1][k+1] += dp[i][j][k];
                    }
                }
                else if( k == 1 ) {
                    if( s[i]-'A'+1 == j ) {
                        dp[i+1][j][k+1] += dp[i][j][k];
                    }
                }
            }
        }
    }
    rep(i,27) ans += dp[s.size()][i][3];
    cout << ans << endl;
    
    return 0;
}
0