Blown Garland

来源:互联网 发布:淘宝买发票 搜索什么 编辑:程序博客网 时间:2024/05/19 14:53

Blown Garland

DESCRIPTION

Nothing is eternal in the world, Kostya understood it on the 7-th of January when he saw partially dead four-color garland.Now he has a goal to replace dead light bulbs, however he doesn't know how many light bulbs for each color are required. It is guaranteed that for each of four colors at least one light is working.It is known that the garland contains light bulbs of four colors: red, blue, yellow and green. The garland is made as follows: if you take any four consecutive light bulbs then there will not be light bulbs with the same color among them. For example, the garland can look like "RYBGRYBGRY", "YBGRYBGRYBG", "BGRYB", but can not look like "BGRYG", "YBGRYBYGR" or "BGYBGY". Letters denote colors: 'R' — red, 'B' — blue, 'Y' — yellow, 'G' — green.Using the information that for each color at least one light bulb still works count the number of dead light bulbs of each four colors.

Input

The first and the only line contains the string s (4 ≤ |s| ≤ 100), which describes the garland, the i-th symbol of which describes the color of the i-th light bulb in the order from the beginning of garland:    'R' — the light bulb is red,    'B' — the light bulb is blue,    'Y' — the light bulb is yellow,    'G' — the light bulb is green,    '!' — the light bulb is dead.The string s can not contain other symbols except those five which were described.It is guaranteed that in the given string at least once there is each of four letters 'R', 'B', 'Y' and 'G'.It is guaranteed that the string s is correct garland with some blown light bulbs, it means that for example the line "GRBY!!!B" can not be in the input data.

Output
In the only line print four integers kr, kb, ky, kg — the number of dead light bulbs of red, blue, yellow and green colors accordingly.

思路:每一段四个字符所在相对位置必须相同,比如abcdabcd,如果abcdbacd的话 肯定会有一个区间有重复,这里就是bcdb两个b重复了,所以相对位置必须相同,即每个字符%4都相同

#include <cstdio>#include <iostream>#include <cstring>#include <algorithm>using namespace std;char s[105];int main(){    while(scanf("%s",s)!=EOF)    {        int n=strlen(s),a[4]={0},b[4]={0},c[4]={0};        for(int i=0;i<n;i++)        {            c[i%4]++;            if(s[i]=='R')            {                a[0]=i%4;                b[0]++;            }            if(s[i]=='B')            {                a[1]=i%4;                b[1]++;            }            if(s[i]=='Y')            {                a[2]=i%4;                b[2]++;            }            if(s[i]=='G')            {                a[3]=i%4;                b[3]++;            }        }        for(int i=0;i<4;i++)            printf("%d ",c[a[i]]-b[i]);        cout<<endl;    }    return 0;}
0 0
原创粉丝点击