
深度搜索
文章平均质量分 76
ych_ding
这个作者很懒,什么都没留下…
展开
-
POJ2362 木棒组成正方形
#include#include#include#includeusing namespace std;//#define DEBUG/* 240K 297MS */#define MAX 64static int len[MAX];static int used[MAX];static int ok;static int sum;static int n;stati原创 2013-09-29 17:17:30 · 3074 阅读 · 0 评论 -
leetcode subset
问题描述:问题分析:原创 2014-12-07 00:35:22 · 433 阅读 · 0 评论 -
POJ2488 骑士旅行
#include#include#includeusing 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 评论