摘要: 代码写得很搓,模拟~一层一层的往下走~View Code 1 #include <stdio.h> 2 #include <string.h> 3 #include <queue> 4 #include <iostream> 5 using namespace std; 6 int map[10][10]; 7 int in[10][10]; 8 int move[4][2]={{1,0},{-1,0},{0,1},{0,-1}}; 9 struct node{10 int x,y,z;11 int k;12 };13 bool operator 阅读全文
posted @ 2013-03-28 21:44 _sunshine 阅读(253) 评论(0) 推荐(0) 编辑