結果

問題 No.2419 MMA文字列2
ユーザー marble72marble72
提出日時 2023-08-12 15:05:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 875 bytes
コンパイル時間 1,817 ms
コンパイル使用メモリ 170,148 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-19 23:21:46
合計ジャッジ時間 48,084 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main(){
    string S;
    cin >> S;
    int l = S.length();
    vector<int> dp(l+1,0);
    if(S[0] == S[1] && S[2] != S[1]){
        dp[3] = 1;
    }
    ll next = 0;
    for(int i=4;i<=l;i++){
        string re = S.substr(0,i-2);
        char x = S[i-2];
        ll up = count(re.begin(),re.end(),x);
        if(x == S[i-1]){
            dp[i]+=up;   
        }else{
            dp[i]+=up+next;
            next=0;
        }
        char y = S[i-1];
        string re2 = S.substr(0,i-1);
        ll down = count(re2.begin(),re2.end(),y);
        if(down<2){
            dp[i] += dp[i-1];
        }else{
            ll mi = down * (down-1)/2;
            dp[i] += dp[i-1]-mi;
            next = mi;
        }
    }
    for(int i=1;i<=l;i++){
        dp[i] += dp[i-1];
    }
    cout << dp[l] << endl;
}
0