CF—98A—Help Victoria the Wise

来源:互联网 发布:java虚拟主机管理系统 编辑:程序博客网 时间:2024/06/06 02:42
A. Help Victoria the Wise
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasilisa the Wise from a far away kingdom got a present from her friend Helga the Wise from a farther away kingdom. The present is a surprise box, yet Vasilisa the Wise doesn't know yet what the surprise actually is because she cannot open the box. She hopes that you can help her in that.

The box's lock is constructed like that. The box itself is represented by an absolutely perfect black cube with the identical deepening on each face (those are some foreign nanotechnologies that the far away kingdom scientists haven't dreamt of). The box is accompanied by six gems whose form matches the deepenings in the box's faces. The box can only be opened after it is correctly decorated by the gems, that is, when each deepening contains exactly one gem. Two ways of decorating the box are considered the same if they can be obtained one from the other one by arbitrarily rotating the box (note that the box is represented by a perfect nanotechnological cube)

Now Vasilisa the Wise wants to know by the given set of colors the following: in how many ways would she decorate the box in the worst case to open it? To answer this question it is useful to know that two gems of one color are indistinguishable from each other. Help Vasilisa to solve this challenging problem.

Input

The first line contains exactly 6 characters without spaces from the set {R,O,Y,G,B,V} — they are the colors of gems with which the box should be decorated.

Output

Print the required number of different ways to decorate the box.

Sample test(s)
Input
YYYYYY
Output
1
Input
BOOOOB
Output
2
Input
ROYGBV
Output
 30  //把每一种情况都列出来,挨个查找就可以了,共11种情况
#include<stdio.h>#include<string.h>#include<algorithm>using namespace std;void pan(int x,int y,int z){    if(x==1&&y==1&&z==1)        printf("30\n");    else if(x==2&&y==1&&z==1)        printf("15\n");    else if(x==3&&y==1&&z==1)        printf("5\n");    else if(x==4&&y==1&&z==1)        printf("2\n");    else if(x==5&&y==1)        printf("1\n");    else if(x==6&&y==0)        printf("1\n");    else if(x==2&&y==2&&z==1)        printf("8\n");    else if(x==2&&y==2&&z==2)        printf("6\n");    else if(x==3&&y==2)        printf("3\n");    else if(x==4&&y==2)        printf("2\n");    else if(x==3&&y==3)        printf("2\n");}int main(){    char c[8];    int a[8];    while(scanf("%s",c)!=EOF)    {        memset(a,0,sizeof(a));        for(int i=0; i<strlen(c); i++) //R, O, Y, G, B, V        {            if(c[i]=='R')                a[0]++;            else if(c[i]=='O')                a[1]++;            else if(c[i]=='Y')                a[2]++;            else if(c[i]=='G')                a[3]++;            else if(c[i]=='B')                a[4]++;            else if(c[i]=='V')                a[5]++;        }        sort(a,a+6);        pan(a[5],a[4],a[3]);    }    return 0;}