aoapc上的八数码问题,在luogu上也有类似的题,p1379,经典题目,lrj给出了一个算法,同时给出了三种判重的方法.本来想用std::queue改写一下,但是出了各种问题,只好抄代码ac掉这道题了... #include <bits/stdc++.h> using namespace std; typedef int State[9]; const int maxstate = 1000000; State st[maxstate], goal; int dist[maxstate];…