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

LeetCode N-Queens II

时间:2015-01-23 22:56:59      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:

Follow up for N-Queens problem.

Now, instead outputting board configurations, return the total number of distinct solutions.

技术分享

 1 public class Solution {
 2     int result;  
 3     int[] A; 
 4     public int totalNQueens(int n) {
 5         A = new int[n];  
 6         nqueens(0, n);  
 7         return result;    
 8     }
 9 
10      public void nqueens(int cur, int n){  
11          if(cur==n) result++;  
12          else {  
13              for(int i=0;i<n;i++){  
14                  A[cur] = i;  
15                  if(valid(cur)){  
16                      nqueens(cur+1, n);  
17                  }  
18              }  
19          }  
20      }  
21      public boolean valid(int r){  
22          for(int i=0;i<r;i++){  
23              if(A[i]==A[r]|| Math.abs(A[i]-A[r])==r-i){  
24                  return false;  
25              }  
26          }  
27          return true;  
28      }  
29 }

 

LeetCode N-Queens II

标签:

原文地址:http://www.cnblogs.com/birdhack/p/4245142.html

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