Flip Game 棋盘翻转(深搜,暴力)POJ1753

#include<iostream> #include<queue> using namespace std; int dx[5]={-1,0,0,1,0}; int dy[5]={0,-1,1,0,0}; char chess[4][4]; int lujing=10000000; bool judge(){ for(int i=0;i<4;i++){ for(int j
相关文章
相关标签/搜索