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
#include <bits/stdc++.h>

using namespace std;
string s;
int n, b, t[200007], w;
int main()
{
    ios_base::sync_with_stdio(0); cin.tie(0);
    cin>>s;
    n=(int)s.size();
    for(int i=0;i<n;i++)
    {
        if(s[i]=='b')
        {
            b++;
            t[b]=i;
        }
    }
    if(n%2==0 && b%2==1) {cout<<"-1"; return 0;}
    for(int i=1;i<=b/2;i++)
    {
        w+=abs(t[i]+t[b-i+1]-n+1);
    }
    if(b%2==1) w+=abs(t[b/2+1]-n/2);
    cout<<w;
    return 0;
}