
DFS
文章平均质量分 79
ych_ding
这个作者很懒,什么都没留下…
展开
-
POJ 1416 碎纸机
#include #include #include using namespace std; static int target, n; static int result; static int digit[8]; static int instant[8]; static int solution[8]; static int p; static int splits; static i原创 2013-08-26 21:40:11 · 1260 阅读 · 0 评论 -
POJ2488 骑士旅行
#include #include #include using namespace std; //#define DEBUG /* 248K 0MS */ static int dx[8] = {-2, -2, -1, -1, 1, 1, 2, 2}; /* 骑士只有8个位置可以移动 */ static int dy[8] = {-1, 1, -2, 2, -2, 2, -1, 1};原创 2013-10-03 12:21:02 · 556 阅读 · 0 评论 -
leetcode subset
问题描述: 问题分析:原创 2014-12-07 00:35:22 · 433 阅读 · 0 评论