摘要: #include #include #include #include #include using namespace std; #define MAXN 21 struct node { int x; int y; }; int n,m,g[MAXN][MAXN]; bool vis[MAXN][MAXN]; int x[4]={1,-1,0,0}; int y[4]={0,... 阅读全文
posted @ 2016-12-26 09:28 joeylee97 阅读(110) 评论(0) 推荐(0) 编辑