BFS
不是常规的广搜,但还是没有对这种题的敏感度,凡是求最小步数什么的,都应该往广搜上考虑一下。
涨知识:
pair的用法
#include<bits/stdc++.h>
using namespace std;
int bfs(string str){
if(str.find("2012") != string::npos) return 0;
queue<pair<string, int>> q;
unordered_map<string, int> mp;
q.push(make_pair(str, 0));
mp[str] = 1;
while(!q.empty()){
string t = q.front().first;
int steps = q.front().second;
q.pop();
for(int i=0; i < t.length()-1; i++){ //在当前状态下,所有移位一步的结果
string now = t;
swap(now[i], now[i+1]);
if(now.find("2012")!= string::npos) return steps + 1;
if(mp[now] == 0){
q.push(make_pair(now, steps+1));
mp[now] = 1;
}
}
}
return -1;
}
int main(){
string str;
int n;
while(cin>>n){
getchar();
getline(cin,str);
cout<<bfs(str)<<endl;
}
return 0;
}