摘要: /*This Code is Submitted by billforum for Problem 4000099 at 2012-01-27 15:36:46*/#include <iostream>#include <stdlib.h>#include <queue>using namespace std;struct point{ int x,y,f,step; }data[10][10];bool legal(int x,int y){ return (x<8&&x>=0&&y<8&& 阅读全文
posted @ 2012-02-04 17:50 wuzhibin 阅读(162) 评论(0) 推荐(0)