• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

2016蓝桥杯省赛C/C++A组第二题跳蚱蜢

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

题意:有9只盘子,排成1个圆圈。  其中8只盘子内装着8只蚱蜢,有一个是空盘。 我们把这些蚱蜢顺时针编号为 1~8 每只蚱蜢都可以跳到相邻的空盘中,也可以再用点力,越过一个相邻的蚱蜢跳到空盘中。  请你计算一下,如果要使得蚱蜢们的队形改为按照逆时针排列,  并且保持空盘的位置不变(也就是1-8换位,2-7换位,...),至少要经过多少次跳跃?  注意:要求提交的是一个整数,请不要填写任何多余内容或说明文字。

分析:结果是20。

#include<bits/stdc++.h>
using namespace std;
set<string> st;
int deal(string s){
    int len = s.size();
    for(int i = 0; i < len; ++i){
        if(s[i] == '0') return i;
    }
}
int bfs(){
    queue<string> q;
    queue<int> step;
    q.push("012345678");
    step.push(0);
    while(!q.empty()){
        string s = q.front();
        q.pop();
        int tmpstep = step.front();
        step.pop();
        int id = deal(s);
        string tmps = s;
        int tmpid = (id + 1) % 9;
        tmps[id] = s[tmpid];
        tmps[tmpid] = s[id];
        if(!st.count(tmps)){
            if(tmps == "087654321") return tmpstep + 1;
            st.insert(tmps);
            q.push(tmps);
            step.push(tmpstep + 1);
        }
        tmpid = (id + 2) % 9;
        tmps = s;
        tmps[id] = s[tmpid];
        tmps[tmpid] = s[id];
        if(!st.count(tmps)){
            if(tmps == "087654321") return tmpstep + 1;
            st.insert(tmps);
            q.push(tmps);
            step.push(tmpstep + 1);
        }
        tmpid = (id + 8) % 9;
        tmps = s;
        tmps[id] = s[tmpid];
        tmps[tmpid] = s[id];
        if(!st.count(tmps)){
            if(tmps == "087654321") return tmpstep + 1;
            st.insert(tmps);
            q.push(tmps);
            step.push(tmpstep + 1);
        }
        tmpid = (id + 7) % 9;
        tmps = s;
        tmps[id] = s[tmpid];
        tmps[tmpid] = s[id];
        if(!st.count(tmps)){
            if(tmps == "087654321") return tmpstep + 1;
            st.insert(tmps);
            q.push(tmps);
            step.push(tmpstep + 1);
        }
    }
    return -1;
}
int main(){
    printf("%d\n", bfs());
    return 0;
}

  


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#读取注册表发布时间:2022-07-13
下一篇:
[C#]List的Sort()、Find()、FindAll()、Exist()的使用方法举例发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap