题目考点:STL、 bfs题目大意:可以看成x上下左右移动最终复原八数码。题目分析:普通的bfs,不过是用map<string, int>储存状态(这里用的unorderedmap,比较快)(由于用字符串储存,速度会慢很多,建议改用map<int, int>储存,这里就偷懒了) #include<unordered_map> #include<algorithm> #include<iostream> #include<cstring> #include<queue> #define tb std::ios::...