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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
// Jakub Rozek
// Zbalansowane słowa
// czas: n*log(n)
// pamiec: n

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

string s;
long long odp;
int n;

void jeden_znak()
{
    char z='#';
    int w=0;
    
    for(int i=1; i<=n; ++i)
    {
        if(z!=s[i])
        {
            z=s[i];
            w=0;
        }
        ++w;
        odp+=w;
    }
}

void dwa_znaki(char a, char b)
{
    int ilea=0,ileb=0;
    map <int, int> M;

    M[0]=1;
    for(int i=1; i<=n; ++i)
    {
        if(s[i]==a) ++ilea;
        else if(s[i]==b) ++ileb;
        else
        {
            ilea=0;
            ileb=0;
            M.clear();
            M[0]=1;
            continue;
        }
        
        odp+=M[ilea-ileb];
        ++M[ilea-ileb];
    }
}

void trzy_znaki()
{
    int ilea=0,ileb=0,ilec=0;
    map <pair<int,int>,int> M;
    
    M[{0,0}]=1;
    for(int i=1; i<=n; ++i)
    {
        if(s[i]=='a') ++ilea;
        else if(s[i]=='b') ++ileb;
        else ++ilec;

        odp+=M[{ilea-ileb,ileb-ilec}];
        ++M[{ilea-ileb,ileb-ilec}];
    }
}

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    cin>>s;
    n=s.size();
    s="@"+s;

    jeden_znak();
    dwa_znaki('a','b');
    dwa_znaki('a','c');
    dwa_znaki('b','c');
    trzy_znaki();

    cout<<odp;
    return 0;
}