摘要: #include #include #include #include #include using namespace std; char map[22][22]; int sx, sy, ex, ey, n, m; int dx[]= {1,0,-1,0}, dy[]= {0,1,0,-1}; bool vis[22][22][22][22]; struct sta { sta(int a,int b,int c,int d,int e) { x1=a,y1=b,x2=c,y2=d,now=e; } sta() {}; int x1,... 阅读全文
posted @ 2013-08-03 21:25 Ink_syk 阅读(116) 评论(0) 推荐(0) 编辑