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
#include <iostream>

using namespace std;

string s;

int answer = 0;
int licznikspol = 0, liczniksamo = 0, zrost = 0;
int counter = 0;

int zr[200000];
int crd = 0;

char spol[21] = {'b', 'c', 'd', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'n', 'p', 'q', 'r', 's', 't', 'v', 'x', 'z', 'w'};
char samo[7] = {'a', 'e', 'i', 'o', 'u', 'y'};


void zrcoords(string s);
void checkforarray(int crd);

int main(){
    cin >> s;
    zrcoords(s);
    for(int n = 0; n < crd; n++){
        for(unsigned int a = 0; a <= zr[n]; a++){
            for(unsigned int b = zr[n] + 2; b < s.length(); ++b){
                if(crd != 1 && a == 0 && b == s.length() - 1){
                    counter++;
                }
                if(counter != 1){
                    answer++;
                }
            }
        }
    }
    cout << answer ;
    return 0;
}

void zrcoords(string s){
    for(unsigned int i = 0; i <= s.length(); i++){
        for(int j = 0; j < 21; j ++){
            if(s[i] == spol[j]){
                licznikspol++;
                if(liczniksamo > 0){
                    liczniksamo = 0;
                }
                break;
            }
        }
        for(int k = 0; k < 7; k++){
            if(s[i] == samo[k]){
                liczniksamo++;
                if(licznikspol > 0){
                    licznikspol = 0;
                }
                break;
            }
        }
        if(liczniksamo == 3 || licznikspol == 3){
            liczniksamo = 0;
            licznikspol = 0;
            zr[crd] = i - 2;
            crd++;
            i -= 2;
        }
    }
}