結果

問題 No.2419 MMA文字列2
ユーザー u-shou-sho
提出日時 2023-08-12 15:16:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,105 bytes
コンパイル時間 2,296 ms
コンパイル使用メモリ 207,480 KB
実行使用メモリ 31,132 KB
最終ジャッジ日時 2024-11-20 01:01:39
合計ジャッジ時間 4,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 17 ms
9,236 KB
testcase_13 AC 4 ms
6,816 KB
testcase_14 AC 31 ms
14,656 KB
testcase_15 AC 20 ms
10,272 KB
testcase_16 AC 34 ms
15,300 KB
testcase_17 AC 11 ms
6,820 KB
testcase_18 AC 34 ms
15,816 KB
testcase_19 AC 34 ms
16,076 KB
testcase_20 AC 12 ms
7,192 KB
testcase_21 AC 9 ms
6,816 KB
testcase_22 AC 39 ms
30,004 KB
testcase_23 AC 40 ms
29,964 KB
testcase_24 AC 39 ms
30,100 KB
testcase_25 AC 40 ms
31,132 KB
testcase_26 AC 7 ms
6,816 KB
testcase_27 AC 38 ms
31,112 KB
testcase_28 AC 69 ms
30,964 KB
testcase_29 AC 68 ms
29,972 KB
testcase_30 AC 67 ms
29,940 KB
testcase_31 AC 68 ms
29,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


/* nC2 */
[[nodiscard]] uint64_t comb2(uint64_t n) {
    //--------Valid Error------------------
    if (n < 2ULL) return 0ULL;
    //-------------------------------------

    uint64_t retVal;
    if (n%2) retVal = n*((n-1ULL)/2ULL);
    else retVal = (n/2ULL)*(n-1ULL); 
    return retVal;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    string S;
    cin >> S;
    vector<vector<uint>> cco(1, vector<uint>(26, 0));
    for (const auto &Si: S){
        cco.push_back(cco.back()); // 間に合わなかったらwavelet treeにする
        cco.back().at(Si-'A') += 1;
    }

    // 末尾から、これを3文字目としてMMA文字列を作る個数を数える。
    uint64_t ans = 0;
    for(uint i = cco.size()-2; i>=2; i--){
        const uint Si = S[i]-'A';
        for(uint c = 0; c<26; c++){
            if (Si == c) continue;
            ans += comb2(cco[i][c]);
            // if (comb2(cco[i][c])) cout << i << ',' << c << ':' << ans << S[i]<<Si << '\n';
        }
    }

    cout << ans << '\n';

    return 0;
}
0