2013山东省赛Rubik’s cube 魔方BFS

二阶魔方,只有0,1

问最少多少步可以转成每个面都为0,或1

BFS即可,对应好旋转时候的关系,因为顺时针转三次和逆时针转1次的效果一样,所以只要6种旋转方式即可,判重可用map省空间,或者直接判省时间

#include "stdio.h"
#include "string.h"
#include "map"
#include "queue"
using namespace std;
bool mp[17000000];
struct node
{
    int x[24],t;
};
int a[25];

int gethash(node cur)
{
    int cnt,i;
    cnt=0;
    for (i=0;i<24;i++)
        cnt=cnt*2+cur.x[i];
    return cnt;
}

int judge(node cur)
{
    int i;
    for (i=0;i<24;i+=4)
        if (cur.x[i]!=cur.x[i+1] || cur.x[i]!=cur.x[i+2] || cur.x[i]!=cur.x[i+3]) return -1;
    return 1;
}

int bfs()
{
    queue<node>q;
    node cur,next;
    int sum,i,temp;
    sum=0;
    for (i=0;i<24;i++)
    {
        cur.x[i]=a[i];
        sum+=a[i];
    }
    if (sum%4!=0) return -1;
    cur.t=0;
    if (judge(cur)==1) return 0;
    q.push(cur);
    memset(mp,false,sizeof(mp));
    mp[gethash(cur)]=true;

    while (!q.empty())
    {
        cur=q.front();
        q.pop();

        next=cur; // 正顺
        temp=next.x[0];  next.x[0]=next.x[2];  next.x[2]=next.x[3];  next.x[3]=next.x[1];  next.x[1]=temp;
        temp=next.x[9];  next.x[9]=next.x[15]; next.x[15]=next.x[17];next.x[17]=next.x[4]; next.x[4]=temp;
        temp=next.x[8];  next.x[8]=next.x[13]; next.x[13]=next.x[16];next.x[16]=next.x[6]; next.x[6]=temp;
        temp=gethash(next);
        if (mp[temp]==false)
        {
            mp[temp]=true;
            next.t++;
            if (judge(next)==1) return next.t;
            q.push(next);
        }

        next=cur; // 正逆
        temp=next.x[0];  next.x[0]=next.x[1];  next.x[1]=next.x[3];  next.x[3]=next.x[2];  next.x[2]=temp;
        temp=next.x[9];  next.x[9]=next.x[4];  next.x[4]=next.x[17]; next.x[17]=next.x[15];next.x[15]=temp;
        temp=next.x[8];  next.x[8]=next.x[6];  next.x[6]=next.x[16]; next.x[16]=next.x[13];next.x[13]=temp;
        temp=gethash(next);
        if (mp[temp]==false)
        {
            mp[temp]=true;
            next.t++;
            if (judge(next)==1) return next.t;
            q.push(next);
        }

        next=cur; // 右侧顺
        temp=next.x[4];  next.x[4]=next.x[6];  next.x[6]=next.x[7];  next.x[7]=next.x[5];  next.x[5]=temp;
        temp=next.x[8];  next.x[8]=next.x[3];  next.x[3]=next.x[19]; next.x[19]=next.x[20];next.x[20]=temp;
        temp=next.x[10]; next.x[10]=next.x[1]; next.x[1]=next.x[17]; next.x[17]=next.x[22];next.x[22]=temp;
        temp=gethash(next);
        if (mp[temp]==false)
        {
            mp[temp]=true;
            next.t++;
            if (judge(next)==1) return next.t;
            q.push(next);
        }

        next=cur; // 右侧逆
        temp=next.x[4];  next.x[4]=next.x[5];  next.x[5]=next.x[7];  next.x[7]=next.x[6];  next.x[6]=temp;
        temp=next.x[8];  next.x[8]=next.x[20]; next.x[20]=next.x[19];next.x[19]=next.x[3]; next.x[3]=temp;
        temp=next.x[10]; next.x[10]=next.x[22];next.x[22]=next.x[17];next.x[17]=next.x[1]; next.x[1]=temp;
        temp=gethash(next);
        if (mp[temp]==false)
        {
            mp[temp]=true;
            next.t++;
            if (judge(next)==1) return next.t;
            q.push(next);
        }

        next=cur; // 上顺
        temp=next.x[11]; next.x[11]=next.x[9]; next.x[9]=next.x[8];  next.x[8]=next.x[10]; next.x[10]=temp;
        temp=next.x[0];  next.x[0]=next.x[4];  next.x[4]=next.x[20]; next.x[20]=next.x[12];next.x[12]=temp;
        temp=next.x[1];  next.x[1]=next.x[5];  next.x[5]=next.x[21]; next.x[21]=next.x[13];next.x[13]=temp;
        temp=gethash(next);
        if (mp[temp]==false)
        {
            mp[temp]=true;
            next.t++;
            if (judge(next)==1) return next.t;
            q.push(next);
        }

        next=cur; // 上逆
        temp=next.x[11]; next.x[11]=next.x[10];next.x[10]=next.x[8]; next.x[8]=next.x[9];  next.x[9]=temp;
        temp=next.x[0];  next.x[0]=next.x[12]; next.x[12]=next.x[20];next.x[20]=next.x[4]; next.x[4]=temp;
        temp=next.x[1];  next.x[1]=next.x[13]; next.x[13]=next.x[21];next.x[21]=next.x[5]; next.x[5]=temp;
        temp=gethash(next);
        if (mp[temp]==false)
        {
            mp[temp]=true;
            next.t++;
            if (judge(next)==1) return next.t;
            q.push(next);
        }
    }
    return -1;
}

int main()
{
    int n,i,ans;
    scanf("%d",&n);
    while (n--)
    {
        for (i=0;i<24;i++)
            scanf("%d",&a[i]);
        ans=bfs();
        if (ans==-1)
            printf("IMPOSSIBLE!\n");
        else
            printf("%d\n",ans);
    }
    return 0;
}
时间: 2024-10-10 14:42:07

2013山东省赛Rubik’s cube 魔方BFS的相关文章

第四届山东省赛 Thrall’s Dream(BFS+vector)

2218: Thrall's Dream Time Limit: 1 Sec  Memory Limit: 128 MB Submit: 253  Solved: 72 [Submit][Status][Web Board] Description We never paid any heed to the ancient prophecies, like fools we clung to the old hatreds, and fought as we had for generation

sdutoj 2606 Rubik’s cube

http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2606 Rubik’s cube Time Limit: 2000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Flabby is addicted to Rubik’s cube. He has many kinds of Rubik’s cube and plays them well. He can reor

第一、三、四届(2010、2012、2013)山东省ACM

第一届山东省赛题目(2400-2409)http://acm.sdibt.edu.cn/JudgeOnline/problemset.php?search=%E5%B1%B1%E4%B8%9C%E7%9C%81%E7%AC%AC%E4%B8%80%E5%B1%8AACM%E7%A8%8B%E5%BA%8F%E8%AE%BE%E8%AE%A1%E5%A4%A7%E8%B5%9B2010.10.3 第三届山东省赛题目(3240-3249)http://acm.sdibt.edu.cn/JudgeOn

△2013山东省ACM竞赛-Alice and Bob

Alice and Bob Description Alice and Bob like playing games very much.Today, they introduce a new game. There is a polynomial like this: (a0*x^(2^0)+1) * (a1 * x^(2^1)+1)*.......*(an-1 * x^(2^(n-1))+1). Then Alice ask Bob Q questions. In the expansion

山东省赛题 NEU OJ 1444 线段树双标记

http://acm.neu.edu.cn/hustoj/problem.php?id=1444 OJ问题论坛发帖http://t.cn/zjBp4jd FAQ http://t.cn/zjHKbmN Linux问题看http://t.cn/aWnP1n 1444: Devour Magic 时间限制: 1 Sec  内存限制: 256 MB 提交: 129  解决: 21 [提交][状态][讨论版] 题目描述 In Warcraft III, Destroyer is a large flyi

[2013山东省第四届ACM大学生程序设计竞赛]——Alice and Bob

Alice and Bob Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Alice and Bob like playing games very much.Today, they introduce a new game. There is a polynomial like this: (a0*x^(2^0)+1) * (a1 * x^(2^1)+1)*.......*(an-1 * x^(2^(n-1))+1). T

第五届山东省赛总结

这次比赛在HITWH,10号我们早早的坐车来到了威海,然后随便逛了逛,吃了饭,就是热身赛. 热身赛题目比较坑爹,尤其是A题,要求区间素数个数,给的数据是10^7,我写了一个却WA了.后来得知有10^9的情况,感觉一下成了神题,我想了好久也没思路,结束后得知大于10^7的数全部当成10^7做,太坑.但这样都有人能AC,真是膜拜.B题是要交一个随机数,RP比较好,2A.C据说是概率DP,我不会也没仔细看. 之后是开幕式,完了以后我一个人回了宾馆,跟山大威海的同学吃了一顿,随后回去看了看电视就睡了.

[2013山东省第四届ACM大学生程序设计竞赛]——Rescue The Princess

Rescue The Princess Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^ 题目描述 Several days ago, a beast caught a beautiful princess and the princess was put in prison. To rescue the princess, a prince who wanted to marry the princess set out immedia

hdu1212 Big Number &amp;第六届山东省赛Single Round Math (同余定理,大数取模)

题目链接:Big Number 题目大意:每次输入两个数,第一个是高精度,第二个数小于100000:求 a mod b 根据同余定理: (a+b)% c = (a%c+ b%c)%c (a*b)%c =  ( a%c* b%c)%c 所以 对于大数,例如 :123 可以这样分解 123 =  (1*10+2)*10 + 3: 123 % c =   (  (  (  1%c *  10%c)%c + 2%c) %c  * 10%c) + 3 %c  ) %c; 因此,我们用字符串处理这个数,通过