結果

問題 No.2419 MMA文字列2
ユーザー xueleixuelei
提出日時 2023-08-12 14:04:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 172,152 KB
実行使用メモリ 45,824 KB
最終ジャッジ日時 2024-04-30 04:53:58
合計ジャッジ時間 3,554 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 16 ms
12,672 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 30 ms
21,632 KB
testcase_15 AC 19 ms
14,592 KB
testcase_16 AC 31 ms
22,272 KB
testcase_17 AC 11 ms
8,960 KB
testcase_18 AC 32 ms
23,296 KB
testcase_19 AC 33 ms
23,808 KB
testcase_20 AC 12 ms
9,600 KB
testcase_21 AC 9 ms
7,808 KB
testcase_22 AC 64 ms
45,696 KB
testcase_23 AC 63 ms
45,696 KB
testcase_24 AC 62 ms
45,824 KB
testcase_25 AC 63 ms
45,824 KB
testcase_26 AC 10 ms
8,320 KB
testcase_27 AC 64 ms
45,696 KB
testcase_28 AC 67 ms
45,824 KB
testcase_29 AC 66 ms
45,824 KB
testcase_30 AC 67 ms
45,696 KB
testcase_31 AC 68 ms
45,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, a, b) for (int i = (int)(a); (i) < (int)(b); (i)++)
#define rrep(i, a, b) for (int i = (int)(b) - 1; (i) >= (int)(a); (i)--)
#define all(v) v.begin(), v.end()

typedef long long ll;
template <class T> using V = vector<T>;
template <class T> using VV = vector<V<T>>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    constexpr char endl = '\n';

    string s;
    cin >> s;
    VV<ll> v(26, V<ll>(s.size()));
    rep(i,0,s.size()) {
        v[s[i]-'A'][i]++;
        if (i != 0) {
            rep(j,0,26) {
                v[j][i] += v[j][i-1];
            }
        }
    }
    ll ans = 0;
    rep(i,1,s.size()-1) {
        ll lft = v[s[i]-'A'][i-1];
        ll rt = s.size() - i - 1 - v[s[i]-'A'][s.size()-1] + v[s[i]-'A'][i];
        ans += lft * rt;
    }
    cout << ans << endl;
    return 0;
}
0