摘要: View Code 1 #include<iostream> 2 #include<cstring> 3 using namespace std; 4 5 struct XPoint 6 { 7 int x; 8 int step; 9 }s,e;10 11 XPoint route[110000];12 bool visited[110000];13 int rear,top;14 15 XPoint bfs(XPoint point);16 17 void init()18 {19 int m,n;20 while(cin>>m>>n)21 阅读全文
posted @ 2011-10-31 02:04 YipWingTim 阅读(222) 评论(0) 推荐(0)