码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode - N-Queens II

时间:2017-07-12 15:21:30      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:++   tco   bool   ash   dfs   bsp   als   false   leetcode   

bool clash(int c1,int l1,int r1,int c2,int l2,int r2){
    if(c1&c2)return false;
    if(l1&l2)return false;
    if(r1&r2)return false;
    return true;
}

int ans;
void dfs(int step,int n,int c1,int l1,int r1){
    if(step == n){
        ans++;
        return ;
    }
    for(int i = 0 ; i < n ; i ++){
        int c2 = 1 << i;
        int l2 = 1 << (n-step+i);
        int r2 = 1 << (i+step);
        if(clash(c1,l1,r1,c2,l2,r2)){
            dfs(step+1,n,c1|c2,l1|l2,r1|r2);
        }
    }
}
int totalNQueens(int n) {
   
    ans = 0;
    dfs(0,n,0,0,0);

    return ans;
}

LeetCode - N-Queens II

标签:++   tco   bool   ash   dfs   bsp   als   false   leetcode   

原文地址:http://www.cnblogs.com/clover-xuqi/p/7154893.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!