CF—98A—Help Victoria the Wise

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;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值