POJ 2046 Gap

127 篇文章 0 订阅
7 篇文章 0 订阅

/*
BFS,利用set来判重.将状态封装到string大大简化了处理过程
*/
#include <iostream>
#include <string>
#include <queue>
#include <set>

using namespace std;

set<string> hashSets;

struct elem
{
    int steps;
    string state;
};
queue<elem> bfsq;

//最终状态++表示空格
string finalState = "11121314151617++21222324252627++31323334353637++41424344454647++";
//记录初始状态
string firstState = "";
int minSteps;

//在当前状态中寻找二位数num
int findNumPos(const string &state, const string &num)
{
    for(int i = 0; i < 32; i++)
    {
        if(state[i * 2] == num[0] && state[i * 2 + 1] == num[1])
            return i * 2;
    }
    return -1;
}

//广搜,需要判重
void bfs()
{
    hashSets.clear();
    hashSets.insert(firstState);
    while(!bfsq.empty()) bfsq.pop();
    elem curelem, newelem;
    curelem.steps = 0;
    curelem.state = firstState;
    bfsq.push(curelem);

    string curstate, newstate, num1, num2;
    int p1, p2, cursteps, i;
    while(!bfsq.empty())
    {
        curelem = bfsq.front();
        bfsq.pop();
        cursteps = curelem.steps;
        curstate = curelem.state;

        //得到最优解
        if(curstate == finalState)
        {
            minSteps = cursteps;
            return;
        }
        int startPos = 0;

        //从四个空格处分别取
        for(i = 0; i < 4; i++)
        {
            p1 = curstate.find_first_of('+', startPos);
           
            num1 = curstate[p1 - 2];
            num1 += curstate[p1 - 1];
           
            //当前空格可取的条件是有数字邻居且数字邻居的第二位不是7
            if(num1[0] != '+' && num1[1] != '7')
            {
                num2 = num1;
                num2[1]++;

                //找到后继的位置
                p2 = findNumPos(curstate, num2);
                newstate = curstate;

                //交换后继与空格
                newstate[p1] = curstate[p2];
                newstate[p1 + 1] = curstate[p2 + 1];
                newstate[p2] = newstate[p2 + 1] = '+';
               
                //判断当前状态是否需要进队列
                if(hashSets.find(newstate) == hashSets.end() && cursteps + 1 < minSteps)
                {
                    hashSets.insert(newstate);
                    newelem.steps = cursteps + 1;
                    newelem.state = newstate;
                    bfsq.push(newelem);
                }
               
               
            }
            startPos = p1 + 2;
        }
    }
}
int main()
{
    int caseN, i, j;
    string temp;
    cin>>caseN;
    while(caseN--)
    {
        //初始化
        minSteps = INT_MAX;
        firstState = finalState;
        //将初始状态的四行的初始列置为空格
        firstState[0] = firstState[1] = firstState[16] = firstState[17] = firstState[32] = firstState[33] = firstState[48] = firstState[49] = '+';
        for(i = 0; i < 4; i++)
        {
            for(j = 1; j <= 7; j++)
            {
                cin>>temp;
                //如果是尾1二位数,需要放到对应行的首部
                if(temp[1] == '1')
                {
                    int pos = (int(temp[0] - '0') - 1) * 16;
                    firstState[pos] = temp[0];
                    firstState[pos + 1] = temp[1];
                    firstState[i * 16 + j * 2] = firstState[i * 16 + j * 2 + 1] = '+';
                }
                else
                {
                    firstState[i * 16 + j * 2] = temp[0];
                    firstState[i * 16 + j * 2 + 1] = temp[1];
                }
            }
        }
        bfs();
        if(minSteps == INT_MAX) cout<<"-1"<<endl;
        else cout<<minSteps<<endl;
    }
    return 0;
}

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值