摘要: 题目链接 POJ3248 阅读全文
posted @ 2017-07-26 10:46 BrysonChen 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; int n,k,ans; char Map[20][20],visL[11]; //标记列 void dfs(int step,int i) // step已放的棋子数, i 当前第几行 { if(step==k) { ans++; return; } ... 阅读全文
posted @ 2017-07-26 10:11 BrysonChen 阅读(180) 评论(0) 推荐(0) 编辑