acwing 1107 魔板

简介: acwing 1107 魔板

1107. 魔板 - AcWing题库

注意初始状态的初始化,以及每一个操作的转移

#include<iostream>
#include<algorithm>
#include<cstring>
#include<queue>
#include<map>
 
using namespace std ;
map<string,pair<char,string> > pre ;
map<string,int> dist ;
 
int x[10] ; 
string get1(string a){
  //cout << s << endl ; 
  string res = "" ;
  for(int i = 0 ; i < 4 ; i ++) res += a[i+4] ;
  for(int i = 4 ; i < 8 ; i ++) res += a[i-4] ;
  return res ;
}
string get2(string a){
  string res = "" ;
  res += a[3] ; res += a[0] ; res += a[1]; res += a[2] ; 
  res += a[7] ; res += a[4] ; res+= a[5] ; res += a[6] ;
  return res ;
}
string get3(string a){
  string res = "" ;
  res+=a;
  res[1] = a[5];
  res[2] = a[1] ;
  res[5] = a[6] ;
  res[6] = a[2] ;
  return res ;
}
int bfs(string start,string e){
  if(start == e ) return 0 ;
  queue<string> q ;
  q.push(start) ;
  dist[start] = 0 ;
  
  while(!q.empty()){
    string now = q.front() ;
    q.pop() ;
    string s[3] ;
    s[0] = get1(now) ;
    s[1] = get2(now) ;
    s[2] = get3(now) ;
    
    for(int i = 0 ; i < 3 ; i ++){
      if(!dist.count(s[i])){
        dist[s[i]] = dist[now] + 1 ;
        pre[s[i]] = {'A'+i,now} ;
        q.push(s[i]) ;
        if(s[i] == e){
          return dist[e] ;
        }
      }
    }
  }
  
  return -1 ;
}
int main(){
  string start ;
  string e ;
  for(int i = 1 ; i <= 8 ; i ++){
    cin >> x[i] ;
  }
  for(int i = 1 ; i <= 4 ; i ++){
    e += (x[i]+'0') ;
  }
  for(int i = 8 ; i >= 5 ; i --){
    e += (x[i]+'0') ;
  }
  start = "12348765";
  //cout << e << endl << start << endl ;
  int step = bfs(start,e);
  cout << step  << endl;  
  string res ;
  while(start!=e){
    //cout << e << endl ;
    res += pre[e].first ;
    e = pre[e].second ;
  }
  reverse(res.begin(),res.end()) ;
  if(step>0)cout << res << endl ;
}
目录
相关文章
|
1月前
acwing 1010 拦截导弹
acwing 1010 拦截导弹
30 1
|
1月前
acwing 898 数字三角形
acwing 898 数字三角形
27 2
|
1月前
acwing 188 武士风度的牛
acwing 188 武士风度的牛
8 0
|
1月前
acwing 1116 马走日
acwing 1116 马走日
10 0
|
1月前
acwing 285. 没有上司的舞会
acwing 285. 没有上司的舞会
15 0
|
1月前
acwing 1017 怪盗基德的滑翔翼
acwing 1017 怪盗基德的滑翔翼
27 0
|
1月前
acwing 1014 登山
acwing 1014 登山
24 0
|
1月前
acwing 1012 友好城市
acwing 1012 友好城市
15 0
|
6月前
|
人工智能
acwing 5478. 分班
acwing 5478. 分班
|
存储
【AcWing】AcWing 2. 01背包问题
目录 一、题目 1、原题链接 2、题目描述 二、解题报告 1、思路分析 2、时间复杂度 3、代码详解
66 0