思路 列,对角线,斜对角线是否可放棋子分别用二进制数表示 每次枚举可放棋子的列,使用lowbit运算 参考链接 https://zhuanlan.zhihu.com/p/22846106 class Solution { private: int cnt = 0; int col; int dg; int udg; map<int, int> mp; public: /** * * @param n int整型 the n * @return int整型 */ int lowbit(...