摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1241STL queue模版 1 #include 2 #include 3 #include 4 #include 5 #include 6 #define maxn 101 7 using namespace std; 8 typedef struct 9 {10 int x,y;11 }Node;12 Node node[maxn];13 int n,m,cnt=0;14 int dir[8][2]={0,1,1,0,0,-1,-1,0,1,-1,-1,1,-1,-1,1,1};15 int v... 阅读全文
posted @ 2014-03-22 11:27 清风旋叶 阅读(124) 评论(0) 推荐(0) 编辑