Pocket Cube

题目:

The Pocket Cube, also known as the Mini Cube or the Ice Cube, is the 2 × 2 × 2 equivalence of a Rubik’s Cube. 
The cube consists of 8 pieces, all corners. 
Each piece is labeled by a three dimensional coordinate (h, k, l) where h, k, l ∈ {0, 1}. Each of the six faces owns four small faces filled with a positive integer. 
For each step, you can choose a certain face and turn the face ninety degrees clockwise or counterclockwise. 
You should judge that if one can restore the pocket cube in one step. We say a pocket cube has been restored if each face owns four same integers. 

Input

The first line of input contains one integer N(N ≤ 30) which is the number of test cases. 
For each test case, the first line describes the top face of the pocket cube, which is the common 2 × 2 face of pieces 
labelled by (0, 0, 1),(0, 1, 1),(1, 0, 1),(1, 1, 1). Four integers are given corresponding to the above pieces.
The second line describes the front face, the common face of (1, 0, 1),(1, 1, 1),(1, 0, 0),(1, 1, 0). Four integers are 
given corresponding to the above pieces. 
The third line describes the bottom face, the common face of (1, 0, 0),(1, 1, 0),(0, 0, 0),(0, 1, 0). Four integers are 
given corresponding to the above pieces. 
The fourth line describes the back face, the common face of (0, 0, 0),(0, 1, 0),(0, 0, 1),(0, 1, 1). Four integers are 
given corresponding to the above pieces. 
The fifth line describes the left face, the common face of (0, 0, 0),(0, 0, 1),(1, 0, 0),(1, 0, 1). Four integers are given 
corresponding to the above pieces. 
The six line describes the right face, the common face of (0, 1, 1),(0, 1, 0),(1, 1, 1),(1, 1, 0). Four integers are given 
corresponding to the above pieces. 
In other words, each test case contains 24 integers a, b, c to x. You can flat the surface to get the surface development 
as follows. 

+ - + - + - + - + - + - +
| q | r | a | b | u | v |
+ - + - + - + - + - + - +
| s | t | c | d | w | x |
+ - + - + - + - + - + - +
        | e | f |
        + - + - +
        | g | h |
        + - + - +
        | i | j |
        + - + - +
        | k | l |
        + - + - +
        | m | n |
        + - + - +
        | o | p |
        + - + - +

Output

For each test case, output YES if can be restored in one step, otherwise output NO.

Sample Input

4
1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
5 5 5 5
6 6 6 6
6 6 6 6
1 1 1 1
2 2 2 2
3 3 3 3
5 5 5 5
4 4 4 4
1 4 1 4
2 1 2 1
3 2 3 2
4 3 4 3
5 5 5 5
6 6 6 6
1 3 1 3
2 4 2 4
3 1 3 1
4 2 4 2
5 5 5 5
6 6 6 6

 

题意:

给出一个2阶魔方,并把每个面上的数字告诉你,问只转动魔方一次能不能将魔方每个面的数字都统一。

 

思路:

模拟2阶魔方转动的六种情况,每一次都要判断是否每个面统一。

注意细节!!!

 

代码:

#include<stdio.h>
int mp[100],s[100];
int judge()
{
    for(int i=0;i<6;i++)
    {
        int t=i*4;
        for(int j=0;j<4;j++)
        {
            if(s[t]!=s[t+j])
                return 0;
        }
    }
    return 1;
}
void op()
{
    for(int i=0;i<24;i++)
        s[i]=mp[i];
    s[1]=mp[13];s[3]=mp[15];s[5]=mp[1];s[7]=mp[3];s[9]=mp[5];s[11]=mp[7];s[13]=mp[9];s[15]=mp[11];
    if(judge())
    {
        printf("YES\n");
        return;
    }
    for(int i=0;i<24;i++)
        s[i]=mp[i];
    s[1]=mp[5];s[3]=mp[7];s[5]=mp[9];s[7]=mp[11];s[9]=mp[13];s[11]=mp[15];s[13]=mp[1];s[15]=mp[3];
    if(judge())
    {
        printf("YES\n");
        return;
    }
    for(int i=0;i<24;i++)
        s[i]=mp[i];
    s[0]=mp[20];s[1]=mp[21];s[20]=mp[11];s[21]=mp[10];s[11]=mp[16];s[10]=mp[17];s[16]=mp[0];s[17]=mp[1];
    if(judge())
    {
        printf("YES\n");
        return;
    }
    for(int i=0;i<24;i++)
        s[i]=mp[i];
    s[0]=mp[16];s[1]=mp[17];s[16]=mp[11];s[17]=mp[10];s[11]=mp[20];s[10]=mp[21];s[20]=mp[0];s[21]=mp[1];
    if(judge())
    {
        printf("YES\n");
        return;
    }
    for(int i=0;i<24;i++)
        s[i]=mp[i];
    s[12]=mp[21];s[13]=mp[23];s[21]=mp[7];s[23]=mp[6];s[7]=mp[18];s[6]=mp[16];s[18]=mp[12];s[16]=mp[13];
    if(judge())
    {
        printf("YES\n");
        return;
    }
    for(int i=0;i<24;i++)
        s[i]=mp[i];
    s[12]=mp[18];s[13]=mp[16];s[21]=mp[12];s[23]=mp[13];s[7]=mp[21];s[6]=mp[23];s[18]=mp[7];s[16]=mp[6];
    if(judge())
    {
        printf("YES\n");
        return;
    }
    printf("NO\n");
}
int main()
{
    int n;
    scanf("%d",&n);
    while(n--)
    {
        for(int i=0;i<24;i++)
        {
            scanf("%d",&mp[i]);
            s[i]=mp[i];
        }
        if(judge())
        {
            printf("YES\n");
            continue;
        }
        op();
    }
    return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值