1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
    Piotr Bieńkowski
    bbienkos@gmail.com
    Akademickie Liceum Ogólnokształcące Politechniki Wrocławskiej
*/

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

#define ll long long
#define pb push_back
#define pii pair<int, int>
#define debug(x); cerr << #x << " = " << x << "\n";
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()

const int N = 3e5 + 7;

int tab[100][N];

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    string A;
    cin >> A;
    for(int i = 0; i < sz(A); i++)
        tab[int(A[i])][i + 1] = 1;

    for(int i = 1; i < sz(A) + 1; i++)
    {
        tab['a'][i + 1] = tab['a'][i] + tab['a'][i + 1];
        tab['b'][i + 1] = tab['b'][i] + tab['b'][i + 1];
        tab['c'][i + 1] = tab['c'][i] + tab['c'][i + 1];
    }
    int cnt = 0;
    for(int i = 1; i <= sz(A); i++)
    {
        // i - długość szablonu
        for(int j = 1; j <= sz(A) - i + 1; j++)
        {
            int tmp1 = tab['a'][j + i - 1] - tab['a'][j - 1];
            int tmp2 = tab['b'][j + i - 1] - tab['b'][j - 1];
            int tmp3 = tab['c'][j + i - 1] - tab['c'][j - 1];
            if(tmp1 != 0)
            {
                if(tmp2 == 0) tmp2 = tmp1;
                if(tmp3 == 0) tmp3 = tmp1;
            }
            if(tmp2 != 0)
            {
                if(tmp1 == 0) tmp1 = tmp2;
                if(tmp3 == 0) tmp3 = tmp2;
            }
            if(tmp3 != 0)
            {
                if(tmp2 == 0) tmp2 = tmp3;
                if(tmp1 == 0) tmp1 = tmp3;
            }
            if(tmp1 == tmp2 && tmp1 == tmp3)
            {
                cnt++;
            }
        }
    }
    cout << cnt << '\n';
}