-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFRIEZA
51 lines (39 loc) · 762 Bytes
/
FRIEZA
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
#include <iostream>
using namespace std;
int main() {
int count,i,t;
cin>>t;
while(t--){
string s;
int a[100000];
int j=0;
cin>>s;
for(i=0;i<s.length(); i++){
count=0;
if((s[i]=='f' || s[i]=='r' || s[i]=='i' || s[i]=='e' || s[i]=='z' || s[i]=='a') )
{
a[j] = 1;
j++;
}
else {
a[j] = 2;
j++;
}
}
count = 1;
for(i=0;i<s.length()-1; i++)
{
if(a[i]==a[i+1])
{
count++;
}
else{
cout<<count;
count = 1;
}
}
cout<<count;
cout<<endl;
}
return 0;
}