2013年3月18日

PKU POJ 1088 滑雪 搜索

摘要: #include <iostream>#include <string.h>#include <stdlib.h>#include <algorithm>using namespace std;int r,c;int map[105][105],height[105][105];int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};inline bool judge(int x,int y){ return x>=0&&y>=0&&x<r&&y< 阅读全文

posted @ 2013-03-18 21:53 Deller 阅读(164) 评论(0) 推荐(0)

导航