摘要:
#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
阅读(183)
评论(0)
推荐(0)