ACM-搜索
文章平均质量分 72
Never_More
这个作者很懒,什么都没留下…
展开
-
poj 1979 Red and Black
这道题目是最简单的广度优先搜索了,题目要求是原创 2014-05-14 23:59:25 · 252 阅读 · 0 评论 -
hdu1010 Tempter of the Bone
#include #include #include #include #include #define N 8 using namespace std; int row; int col; int step; int sx,sy,ex,ey; bool can; char maze[N+1][N+1]; int dir[4][2]={1,0,-1,0,0,1,0,-1}; void D原创 2014-05-16 01:24:37 · 203 阅读 · 0 评论 -
poj 3256 Cow Picnic
DFS水题,开始直接DFS,近800ms,然后使用vector优化原创 2014-05-20 00:20:18 · 269 阅读 · 0 评论 -
*Hdu 1026-Ignatius and the Princess I
题目思想比较简单,但是题目要求输出路径比较麻烦,学习了原创 2014-05-17 00:41:42 · 436 阅读 · 0 评论 -
poj 1101 The Game
这个题,discuss里说可能数据比较水,我用了原创 2014-05-18 11:55:44 · 285 阅读 · 0 评论