#include<bits/stdc++.h>
using namespace std;
#define SET(a) memset(a,-1,sizeof(a))
#define CLR(a) memset(a,0,sizeof(a))
#define PI acos(-1.0)
#define MOD 1000000007
#define MX 100010
int main()
{
ios_base::sync_with_stdio(0);cin.tie(0);
int tc, kk=1, n, m, x, y, a, b, c;
string s;
cin>>tc;
while(tc--)
{
cin>>n;
map<string, int>mp;
cin>>s;
for(int i=2;i<40;i++)
{
string tmp="";
tmp+=s[i-2];
tmp+=s[i-1];
tmp+=s[i];
mp[tmp]++;
}
cout<<n<<" ";
cout<<mp["TTT"]<<" "<<mp["TTH"]<<" "<<mp["THT"]<<" "<<mp["THH"]<<" "<<mp["HTT"]<<" "<<mp["HTH"]<<" "<<mp["HHT"]<<" "<<mp["HHH"]<<"\n";
}
return 0;
}
No comments:
Post a Comment